├── LICENSE.md ├── README.md ├── clp-interface.cxx ├── clp-interface.h ├── clp.go ├── go.mod ├── packed_matrix.go ├── packed_matrix_test.go ├── simplex.go └── simplex_test.go /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanl/clp/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanl/clp/HEAD/README.md -------------------------------------------------------------------------------- /clp-interface.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanl/clp/HEAD/clp-interface.cxx -------------------------------------------------------------------------------- /clp-interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanl/clp/HEAD/clp-interface.h -------------------------------------------------------------------------------- /clp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanl/clp/HEAD/clp.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/lanl/clp 2 | 3 | go 1.16 4 | -------------------------------------------------------------------------------- /packed_matrix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanl/clp/HEAD/packed_matrix.go -------------------------------------------------------------------------------- /packed_matrix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanl/clp/HEAD/packed_matrix_test.go -------------------------------------------------------------------------------- /simplex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanl/clp/HEAD/simplex.go -------------------------------------------------------------------------------- /simplex_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lanl/clp/HEAD/simplex_test.go --------------------------------------------------------------------------------