lpsolve 5.5.10.i
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Rakefile +78 -0
- data/VERSION +1 -0
- data/doc/Doxyfile +1127 -0
- data/doc/run_doxygen +107 -0
- data/doc/typos.txt +29 -0
- data/example/boilerplate.rb +8 -0
- data/example/demo.rb +223 -0
- data/example/lp.lp +9 -0
- data/example/lp.mps +25 -0
- data/example/model.lp +8 -0
- data/example/model.mps +16 -0
- data/example/rubydemo.rb +215 -0
- data/ext/Makefile +187 -0
- data/ext/extconf.rb +11 -0
- data/ext/lpconsts.c +174 -0
- data/ext/lpsolve.c +2915 -0
- data/test/Rakefile +8 -0
- data/test/lp_model.right +24 -0
- data/test/lpsolve.right +60 -0
- data/test/mps_model.right +24 -0
- data/test/test_lpsolve.rb +530 -0
- metadata +96 -0
metadata
ADDED
@@ -0,0 +1,96 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: lpsolve
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: true
|
5
|
+
segments:
|
6
|
+
- 5
|
7
|
+
- 5
|
8
|
+
- 10
|
9
|
+
- i
|
10
|
+
version: 5.5.10.i
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- Rocky Bernstein
|
14
|
+
autorequire:
|
15
|
+
bindir: bin
|
16
|
+
cert_chain: []
|
17
|
+
|
18
|
+
date: 2012-08-02 00:00:00 -04:00
|
19
|
+
default_executable:
|
20
|
+
dependencies: []
|
21
|
+
|
22
|
+
description: |
|
23
|
+
A Ruby library for using simplex-method Mixed Integer Linear Programming solver, lpsolve version 0.5.5.
|
24
|
+
Pick up the C code for lpsolve at http://bashdb.sf.net/lpsolve-5.5.0.10i.tar.bz2
|
25
|
+
|
26
|
+
email: rockby@rubyforge.org
|
27
|
+
executables: []
|
28
|
+
|
29
|
+
extensions:
|
30
|
+
- ext/extconf.rb
|
31
|
+
extra_rdoc_files: []
|
32
|
+
|
33
|
+
files:
|
34
|
+
- Rakefile
|
35
|
+
- VERSION
|
36
|
+
- doc/typos.txt
|
37
|
+
- doc/run_doxygen
|
38
|
+
- doc/Doxyfile
|
39
|
+
- example/demo.rb
|
40
|
+
- example/boilerplate.rb
|
41
|
+
- example/lp.lp
|
42
|
+
- example/rubydemo.rb
|
43
|
+
- example/model.lp
|
44
|
+
- example/model.mps
|
45
|
+
- example/lp.mps
|
46
|
+
- ext/lpsolve.c
|
47
|
+
- ext/lpconsts.c
|
48
|
+
- ext/Makefile
|
49
|
+
- ext/extconf.rb
|
50
|
+
- test/test_lpsolve.rb
|
51
|
+
- test/lpsolve.right
|
52
|
+
- test/lp_model.right
|
53
|
+
- test/mps_model.right
|
54
|
+
- test/Rakefile
|
55
|
+
has_rdoc: true
|
56
|
+
homepage: http://github.org/rb-lpsolve/
|
57
|
+
licenses: []
|
58
|
+
|
59
|
+
post_install_message:
|
60
|
+
rdoc_options: []
|
61
|
+
|
62
|
+
require_paths:
|
63
|
+
- lib
|
64
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
65
|
+
none: false
|
66
|
+
requirements:
|
67
|
+
- - ">="
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
segments:
|
70
|
+
- 1
|
71
|
+
- 8
|
72
|
+
- 4
|
73
|
+
version: 1.8.4
|
74
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
75
|
+
none: false
|
76
|
+
requirements:
|
77
|
+
- - ">"
|
78
|
+
- !ruby/object:Gem::Version
|
79
|
+
segments:
|
80
|
+
- 1
|
81
|
+
- 3
|
82
|
+
- 1
|
83
|
+
version: 1.3.1
|
84
|
+
requirements: []
|
85
|
+
|
86
|
+
rubyforge_project: lpsolve
|
87
|
+
rubygems_version: 1.3.7
|
88
|
+
signing_key:
|
89
|
+
specification_version: 3
|
90
|
+
summary: Ruby interface to lpsolve version 5.5.0.10
|
91
|
+
test_files:
|
92
|
+
- test/test_lpsolve.rb
|
93
|
+
- test/lpsolve.right
|
94
|
+
- test/lp_model.right
|
95
|
+
- test/mps_model.right
|
96
|
+
- test/Rakefile
|