glpk

    0熱度

    1回答

    我試圖創建Pyomo 5.1.1抽象模型實例化一個具體的模型,然後使用Python內的值來填充它(即不使用AMPL文件)。我基本上遵循Pyomo documentation example,但我得到「恆定客觀檢測」。 import pyomo.environ as oe model = oe.AbstractModel() model.I = oe.Set() model.J = oe.Se

    0熱度

    1回答

    我無法運行通過apt-get安裝的名爲dist的GLPK解算器(glpsol)。它拋出以下: $ glpsol dist.mod GLPSOL: GLPK LP/MIP Solver, v4.60 Parameter(s) specified in the command line: dist.mod Reading problem data from 'dist.mod'... dis

    1熱度

    1回答

    我使用ompr包與r,我不知道如何改變目標函數爲我的需要。第一種模式正在運行,但目標並不是我所需要的。 library(ompr) library(magrittr) library(ROI.plugin.glpk) library(ompr.roi) anz_schulen <- 50 anz_sfkz <- 10 # This model works model <- MI

    0熱度

    1回答

    我已經使用指令here安裝了Haskell編譯器和glpk-hs。此外,我已經使用cabal install glpk-hs來安裝所需的文件,以嘗試編譯Haskell程序。 但是,glpk的cabal安裝不起作用。下面的消息不斷彈出: Resolving dependencies... Configuring glpk-hs-0.5... Failed to install glpk-hs-0.5

    0熱度

    1回答

    我是GLPK和線性編程的新手。我試圖將一些數據輸出到一個.csv文件,並將它輸出到文件,但它不會用逗號分隔數據。 set I; /*equipments */ set J; /* maintenance plans */ param cost{I}; /* failure cost for equip i in I */ param maint{J}; param prob{I, J};

    0熱度

    1回答

    我使用os x 10.11,anaconda 1.3.1,python 3.5,glpk 4.60,pyomo 5.0.1,spyder 3.0.2。 如果我運行它使用pyomo調用GLPK我碰到下面的警告和錯誤以股代息: WARNING:pyomo.solvers:Could not locate the 'glpsol' executable, which is required for so

    1熱度

    1回答

    時,當試圖在Mac OS X打造GLPK-4.61與 ./configure --with-gmp gmp.h頭沒有找到我收到以下錯誤信息: checking gmp.h usability... no checking gmp.h presence... no checking for gmp.h... no configure: error: gmp.h header not found 安裝

    1熱度

    1回答

    opt = SolverFactory("glpk") opt.options["mipgap"] = 0.05 opt.options["FeasibilityTol"] = 1e-05 solver_manager = SolverManagerFactory("serial") # results = solver_manager.solve(instance, opt=opt, t

    1熱度

    1回答

    我的簡化數據在GNU MathProg設定爲如下,Verts是用於頂點一組索引和coords是這些頂點的座標的表: data; set Indices := X Y; set Verts := 1 2 3 4; param Coords : X Y := 1 1.2 0.3 2 4.2 13.0 3 1.5 1.0 4 0.5 0.8; end; 這工作,但如果我取代綠黨的定

    0熱度

    1回答

    我有一個AMPL模型文件,我正在將其轉換爲GLPK。它開始: param n; # The number of nodes in the graph set V := {1 .. n}; # The set of vertices in the graph set E within V cross V; # The set of edges in the graph set NE with