タグ

glpkに関するazaazatoのブックマーク (3)

  • GLPKで線形計画法 : kei@sodan

    こんな感じで結果が出ます。 Problem: trans Rows: 8 Columns: 2 Non-zeros: 11 Status: OPTIMAL Objective: THROUGHPUT = 46 (MAXimum) No. Row name St Activity Lower bound Upper bound Marginal ------ ------------ -- ------------- ------------- ------------- ------------- 1 THROUGHPUT B 46 2 BANDWIDTH[l0] B 19 20 3 BANDWIDTH[l1] B 19 30 4 BANDWIDTH[l2] B 8 25 5 BANDWIDTH[l3] B 27 32 6 BANDWIDTH[l4] NU 27 27 1 7 BANDWI

  • Using GLPK from C++

    Recently I suggested to some students that they could use the Gnu Linear Programming Toolkit from C++. Shortly afterwards I thought I had better verify that I had not just sent people on a hopeless mission. To test things out, I decided to try using GLPK as part of an ongoing project with Lars Schewe The basic idea of this example is to use glpk to solve an integer program with row generation. The

  • GLPKで楽しく最適化しよう!

    since 2004/05/01 last update 2005/04/08 access: new! 最新版 glpk4.8 をアップロードしました。 new! 久しぶりに記事を追加しました。 new! GLPKスーパー簡易マニュアルを追加しました。 このページの目的 GLPK(GNU Linear Programming Kit)は最適化の入門者からプロまで幅広く使える 大変良くできたフリーの線形計画ソルバーです。 しかし残念なことに日においてはほとんど普及しておらず、 付属マニュアルも英語のため、とても敷居の高いものになっています。 また、Unix上で動かすことが前提で作られているので、Windows上で 動作させることがなかなか面倒です。 そこで、WindowsのDOSで動作するようにバイナリも配布することにしました。 このページでは数理計画とは何か、から

  • 1