Skip to content
Snippets Groups Projects
Select Git revision
  • 64e8a6a8a3d83ddec5a25a909f0499326f1e46cb
  • master default protected
  • emoUS
  • add_default_vectorizer_and_pretrained_loading
  • clean_code
  • readme
  • issue127
  • generalized_action_dicts
  • ppo_num_dialogues
  • crossowoz_ddpt
  • issue_114
  • robust_masking_feature
  • scgpt_exp
  • e2e-soloist
  • convlab_exp
  • change_system_act_in_env
  • pre-training
  • nlg-scgpt
  • remapping_actions
  • soloist
20 results

evaluate_distributed.py

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    clpAPI.R 17.40 KiB
    #------------------------------------------------------------------------------#
    #                           R interface to COIN-OR Clp                         #
    #------------------------------------------------------------------------------#
    
    #  clpAPI.R
    #  R interface to COIN-OR Clp.
    #
    #  Copyright (C) 2011-2013 Gabriel Gelius-Dietrich, Dpt. for Bioinformatics,
    #  Institute for Informatics, Heinrich-Heine-University, Duesseldorf, Germany.
    #  All right reserved.
    #  Email: geliudie@uni-duesseldorf.de
    #
    #  This file is part of clpAPI.
    #
    #  ClpAPI is free software: you can redistribute it and/or modify
    #  it under the terms of the GNU General Public License as published by
    #  the Free Software Foundation, either version 3 of the License, or
    #  (at your option) any later version.
    #
    #  ClpAPI is distributed in the hope that it will be useful,
    #  but WITHOUT ANY WARRANTY; without even the implied warranty of
    #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    #  GNU General Public License for more details.
    #
    #  You should have received a copy of the GNU General Public License
    #  along with clpAPI  If not, see <http://www.gnu.org/licenses/>.
    
    
    #------------------------------------------------------------------------------#
    #                                  the interface                               #
    #------------------------------------------------------------------------------#
    
    
    #------------------------------------------------------------------------------#
    
    delProbCLP <- function(lp) {
    
        invisible(.Call("delProb", clpPointer(lp), PACKAGE = "clpAPI"))
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    initProbCLP <- function(ptrtype = "clp_prob") {
        lp <- .Call("initProb", PACKAGE = "clpAPI",
                    as.character(ptrtype)
              )
    
        lpP <- clp_Pointer(lp)
    
        return(lpP)
    }
    
    
    #------------------------------------------------------------------------------#
    
    setObjDirCLP <- function(lp, lpdir) {
    
        invisible(
            .Call("setObjDir", PACKAGE = "clpAPI",
                  clpPointer(lp),
                  as.numeric(lpdir)
            )
        )
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    getObjDirCLP <- function(lp) {
    
        lpdir <- .Call("getObjDir", PACKAGE = "clpAPI",
                       clpPointer(lp)
                      )
        return(lpdir)
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    resizeCLP <- function(lp, nrows, ncols) {
    
        invisible(
            .Call("resize", PACKAGE = "clpAPI",
                  clpPointer(lp),
                  as.integer(nrows),
                  as.integer(ncols)
            )
        )
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    addRowsCLP <- function(lp, nrows, lb, ub, rowst, cols, val) {
    
        invisible(
            .Call("addRows", PACKAGE = "clpAPI",
                  clpPointer(lp),
                  as.integer(nrows),
                  as.numeric(lb),
                  as.numeric(ub),
                  as.integer(rowst),
                  as.integer(cols),
                  as.numeric(val)
            )
        )
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    addColsCLP <- function(lp, ncols, lb, ub, obj, colst, rows, val) {
    
        invisible(
            .Call("addCols", PACKAGE = "clpAPI",
                  clpPointer(lp),
                  as.integer(ncols),
                  as.numeric(lb),
                  as.numeric(ub),
                  as.numeric(obj),
                  as.integer(colst),
                  as.integer(rows),
                  as.numeric(val)
            )
        )
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    getNumRowsCLP <- function(lp) {
    
        nrows <- .Call("getNumRows", PACKAGE = "clpAPI",
                       clpPointer(lp)
                      )
        return(nrows)
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    getNumColsCLP <- function(lp) {
    
        ncols <- .Call("getNumCols", PACKAGE = "clpAPI",
                       clpPointer(lp)
                      )
        return(ncols)
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    chgObjCoefsCLP <- function(lp, objCoef) {
    
        invisible(
            .Call("chgObjCoefs", PACKAGE = "clpAPI",
                  clpPointer(lp),
                  as.numeric(objCoef)
            )
        )
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    getObjCoefsCLP <- function(lp) {
    
        objCoefs <- .Call("getObjCoefs", PACKAGE = "clpAPI",
                          clpPointer(lp)
                         )
        return(objCoefs)
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    chgRowLowerCLP <- function(lp, rlb) {
    
        invisible(
            .Call("chgRowLower", PACKAGE = "clpAPI",
                  clpPointer(lp),
                  as.numeric(rlb)
            )
        )
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    getRowLowerCLP <- function(lp) {
    
        rlb <- .Call("getRowLower", PACKAGE = "clpAPI",
                     clpPointer(lp)
                    )
        return(rlb)
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    chgRowUpperCLP <- function(lp, rub) {
    
        invisible(
            .Call("chgRowUpper", PACKAGE = "clpAPI",
                  clpPointer(lp),
                  as.numeric(rub)
            )
        )
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    getRowUpperCLP <- function(lp) {
    
        rub <- .Call("getRowUpper", PACKAGE = "clpAPI",
                     clpPointer(lp)
                    )
        return(rub)
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    chgColLowerCLP <- function(lp, lb) {
    
        invisible(
            .Call("chgColLower", PACKAGE = "clpAPI",
                  clpPointer(lp),
                  as.numeric(lb)
            )
        )
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    getColLowerCLP <- function(lp) {
    
        lb <- .Call("getColLower", PACKAGE = "clpAPI",
                    clpPointer(lp)
                   )
        return(lb)
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    chgColUpperCLP <- function(lp, ub) {
    
        invisible(
            .Call("chgColUpper", PACKAGE = "clpAPI",
                  clpPointer(lp),
                  as.numeric(ub)
            )
        )
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    getColUpperCLP <- function(lp) {
    
        ub <- .Call("getColUpper", PACKAGE = "clpAPI",
                    clpPointer(lp)
                   )
        return(ub)
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    loadProblemCLP <- function(lp, ncols, nrows, ia, ja, ra,
                               lb = NULL, ub = NULL,
                               obj_coef = NULL, rlb = NULL, rub = NULL) {
    
        if (is.null(lb)) {
            Clb <- as.null(lb)
        }
        else {
            Clb <- as.numeric(lb)
        }
    
        if (is.null(ub)) {
            Cub <- as.null(ub)
        }
        else {
            Cub <- as.numeric(ub)
        }
    
        if (is.null(obj_coef)) {
            Cobj_coef <- as.null(obj_coef)
        }
        else {
            Cobj_coef <- as.numeric(obj_coef)
        }
    
        if (is.null(rlb)) {
            Crlb <- as.null(rlb)
        }
        else {
            Crlb <- as.numeric(rlb)
        }
    
        if (is.null(rub)) {
            Crub <- as.null(rub)
        }
        else {
            Crub <- as.numeric(rub)
        }
    
        invisible(
            .Call("loadProblem", PACKAGE = "clpAPI",
                  clpPointer(lp),
                  as.integer(ncols),
                  as.integer(nrows),
                  as.integer(ia),
                  as.integer(ja),
                  as.numeric(ra),
                  Clb,
                  Cub,
                  Cobj_coef,
                  Crlb,
                  Crub
    #               as.numeric(lb),
    #               as.numeric(ub),
    #               as.numeric(obj_coef),
    #               as.numeric(rlb),
    #               as.numeric(rub)
            )
        )
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    loadMatrixCLP <- function(lp, ncols, nrows, ia, ja, ra) {
    
        invisible(
            .Call("loadMatrix", PACKAGE = "clpAPI",
                  clpPointer(lp),
                  as.integer(ncols),
                  as.integer(nrows),
                  as.integer(ia),
                  as.integer(ja),
                  as.numeric(ra)
            )
        )
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    getNumNnzCLP <- function(lp) {
    
        nnz <- .Call("getNumNnz", PACKAGE = "clpAPI",
                     clpPointer(lp)
                    )
        return(nnz)
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    getVecStartCLP <- function(lp) {
    
        vec_start <- .Call("getVecStart", PACKAGE = "clpAPI",
                           clpPointer(lp)
                          )
        return(vec_start)
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    getIndCLP <- function(lp) {
    
        index <- .Call("getInd", PACKAGE = "clpAPI",
                       clpPointer(lp)
                      )
        return(index)
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    getVecLenCLP <- function(lp) {
    
        vec_len <- .Call("getVecLen", PACKAGE = "clpAPI",
                       lp
                      )
        return(vec_len)
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    getNnzCLP <- function(lp) {
    
        n_elem <- .Call("getNnz", PACKAGE = "clpAPI",
                        clpPointer(lp)
                       )
        return(n_elem)
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    printModelCLP <- function(lp, prefix = "CLPmodel") {
    
        invisible(
            .Call("printModel", PACKAGE = "clpAPI",
                  clpPointer(lp),
                  as.character(prefix)
            )
        )
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    setLogLevelCLP <- function(lp, amount) {
    
        invisible(
            .Call("setLogLevel", PACKAGE = "clpAPI",
                  clpPointer(lp),
                  as.integer(amount)
            )
        )
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    getLogLevelCLP <- function(lp) {
    
        amount <- .Call("getLogLevel", PACKAGE = "clpAPI",
                        clpPointer(lp)
                       )
        return(amount)
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    scaleModelCLP <- function(lp, mode) {
    
        invisible(
            .Call("scaleModel", PACKAGE = "clpAPI",
                  clpPointer(lp),
                  as.integer(mode)
            )
        )
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    getScaleFlagCLP <- function(lp) {
    
        flag <- .Call("getScaleFlag", PACKAGE = "clpAPI",
                      clpPointer(lp)
                     )
        return(flag)
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    solveInitialCLP <- function(lp) {
    
        ret <- .Call("solveInitial", PACKAGE = "clpAPI",
                     clpPointer(lp)
                    )
        return(ret)
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    solveInitialDualCLP <- function(lp) {
    
        ret <- .Call("solveInitialDual", PACKAGE = "clpAPI",
                     clpPointer(lp)
                    )
        return(ret)
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    solveInitialPrimalCLP <- function(lp) {
    
        ret <- .Call("solveInitialPrimal", PACKAGE = "clpAPI",
                     clpPointer(lp)
                    )
        return(ret)
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    solveInitialBarrierCLP <- function(lp) {
    
        ret <- .Call("solveInitialBarrier", PACKAGE = "clpAPI",
                     clpPointer(lp)
                    )
        return(ret)
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    solveInitialBarrierNoCrossCLP <- function(lp) {
    
        ret <- .Call("solveInitialBarrierNoCross", PACKAGE = "clpAPI",
                     clpPointer(lp)
                    )
        return(ret)
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    dualCLP <- function(lp, ifValP = 0) {
    
        ret <- .Call("dual", PACKAGE = "clpAPI",
                       clpPointer(lp),
                       as.integer(ifValP)
                      )
        return(ret)
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    primalCLP <- function(lp, ifValP = 0) {
    
        ret <- .Call("primal", PACKAGE = "clpAPI",
                       clpPointer(lp),
                       as.integer(ifValP)
                      )
        return(ret)
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    idiotCLP <- function(lp, thd = 0) {
    
        invisible(
            .Call("idiot", PACKAGE = "clpAPI",
                  clpPointer(lp),
                  as.integer(thd)
            )
        )
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    getSolStatusCLP <- function(lp) {
    
        stat <- .Call("getSolStatus", PACKAGE = "clpAPI",
                      clpPointer(lp)
                     )
        return(stat)
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    getObjValCLP <- function(lp) {
    
        obj <- .Call("getObjVal", PACKAGE = "clpAPI",
                     clpPointer(lp)
                    )
        return(obj)
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    getColPrimCLP <- function(lp) {
    
        col_prim <- .Call("getColPrim", clpPointer(lp), PACKAGE = "clpAPI")
    
        return(col_prim)
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    getColDualCLP <- function(lp) {
    
        col_dual <- .Call("getColDual", clpPointer(lp), PACKAGE = "clpAPI")
    
        return(col_dual)
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    getRowPrimCLP <- function(lp) {
    
        row_prim <- .Call("getRowPrim", clpPointer(lp), PACKAGE = "clpAPI")
    
        return(row_prim)
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    getRowDualCLP <- function(lp) {
    
        row_dual <- .Call("getRowDual", clpPointer(lp), PACKAGE = "clpAPI")
    
        return(row_dual)
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    delRowsCLP <- function(lp, num, i) {
    
        invisible(
            .Call("delRows", PACKAGE = "clpAPI",
                  clpPointer(lp),
                  as.integer(num),
                  as.integer(i)
            )
        )
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    delColsCLP <- function(lp, num, j) {
    
        invisible(
            .Call("delCols", PACKAGE = "clpAPI",
                  clpPointer(lp),
                  as.integer(num),
                  as.integer(j)
            )
        )
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    readMPSCLP <- function(lp, fname, keepNames = TRUE, ignoreErrors = FALSE) {
    
        check <- .Call("readMPS", PACKAGE = "clpAPI",
                       clpPointer(lp),
                       as.character(fname),
                       as.integer(keepNames),
                       as.integer(ignoreErrors)
                      )
        return(check)
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    saveModelCLP <- function(lp, fname) {
    
        check <- .Call("saveModel", PACKAGE = "clpAPI",
                       clpPointer(lp),
                       as.character(fname)
                      )
        return(check)
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    restoreModelCLP <- function(lp, fname) {
    
        check <- .Call("restoreModel", PACKAGE = "clpAPI",
                       clpPointer(lp),
                       as.character(fname)
                      )
        return(check)
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    versionCLP <- function() {
    
        version <- .Call("version", PACKAGE = "clpAPI")
        return(version)
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    dropNamesCLP <- function(lp) {
    
        invisible(
            .Call("dropNames", PACKAGE = "clpAPI",
                  clpPointer(lp)
            )
        )
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    copyNamesCLP <- function(lp, cnames, rnames) {
    
        invisible(
            .Call("copyNames", PACKAGE = "clpAPI",
                  clpPointer(lp),
                  as.character(cnames),
                  as.character(rnames)
            )
        )
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    lengthNamesCLP <- function(lp) {
    
        nnames <- .Call("lengthNames", PACKAGE = "clpAPI",
                        clpPointer(lp)
                       )
        return(nnames)
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    rowNameCLP <- function(lp, i, rname) {
    
        invisible(
            .Call("rowName", PACKAGE = "clpAPI",
                  clpPointer(lp),
                  as.integer(i),
                  as.character(rname)
            )
        )
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    colNameCLP <- function(lp, j, cname) {
    
        invisible(
            .Call("colName", PACKAGE = "clpAPI",
                  clpPointer(lp),
                  as.integer(j),
                  as.character(cname)
            )
        )
    
    }
    
    
    #------------------------------------------------------------------------------#
    
    probNameCLP <- function(lp, pname) {
    
        invisible(
            .Call("probName", PACKAGE = "clpAPI",
                  clpPointer(lp),
                  as.integer(nchar(pname)),
                  as.character(pname)
            )
        )
    
    }