├── .github └── workflows │ └── build.yml ├── .gitignore ├── CHANGELOG.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── highs.gemspec ├── lib ├── highs.rb └── highs │ ├── array.rb │ ├── ffi.rb │ ├── methods.rb │ ├── model.rb │ └── version.rb ├── test ├── highs_test.rb ├── support │ └── lp.mps └── test_helper.rb └── vendor ├── LICENSE-THIRD-PARTY.txt └── LICENSE.txt /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/highs-ruby/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/highs-ruby/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/highs-ruby/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/highs-ruby/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/highs-ruby/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/highs-ruby/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/highs-ruby/HEAD/Rakefile -------------------------------------------------------------------------------- /highs.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/highs-ruby/HEAD/highs.gemspec -------------------------------------------------------------------------------- /lib/highs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/highs-ruby/HEAD/lib/highs.rb -------------------------------------------------------------------------------- /lib/highs/array.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/highs-ruby/HEAD/lib/highs/array.rb -------------------------------------------------------------------------------- /lib/highs/ffi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/highs-ruby/HEAD/lib/highs/ffi.rb -------------------------------------------------------------------------------- /lib/highs/methods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/highs-ruby/HEAD/lib/highs/methods.rb -------------------------------------------------------------------------------- /lib/highs/model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/highs-ruby/HEAD/lib/highs/model.rb -------------------------------------------------------------------------------- /lib/highs/version.rb: -------------------------------------------------------------------------------- 1 | module Highs 2 | VERSION = "0.2.6" 3 | end 4 | -------------------------------------------------------------------------------- /test/highs_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/highs-ruby/HEAD/test/highs_test.rb -------------------------------------------------------------------------------- /test/support/lp.mps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/highs-ruby/HEAD/test/support/lp.mps -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/highs-ruby/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /vendor/LICENSE-THIRD-PARTY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/highs-ruby/HEAD/vendor/LICENSE-THIRD-PARTY.txt -------------------------------------------------------------------------------- /vendor/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/highs-ruby/HEAD/vendor/LICENSE.txt --------------------------------------------------------------------------------