Files
ortools-clone/ortools/linear_solver
Corentin Le Molgat b40d6b59e3 Fix windows linear_solver.cc
Windows error
```
make cc
...
cl ...\\linear_solver.obj linear_solver.cc
.\\ortools\\linear_solver\\linear_solver.cc(466): error C2131: expression did not evaluate to a constant
dependencies\\install\\include\absl/strings/string_view.h(186): note: a non-constant (sub-)expression was encountered
```
see: https://ci.appveyor.com/project/lperron/or-tools-98u1n/builds/24076151/job/orlns0nwbidxytry#L4312
2019-04-25 10:00:21 +02:00
..
2019-03-14 12:53:16 +01:00
2018-11-10 18:00:53 +01:00
2019-02-26 14:41:30 +01:00
2018-11-10 18:00:53 +01:00
2018-11-10 18:00:53 +01:00
2019-04-25 10:00:21 +02:00
2019-04-23 16:08:58 +02:00

<summary>Linear programming and integer programming</summary>

See the comments at the top of linear_solver.h for an introduction to
linear programming and integer programming.

- linear_solver.h: the point of entry for the wrapper that provides a
  simple and unified interface to several linear programming and mixed
  integer programming solvers.

- linear_solver.cc: the C++ code of the linear solver wrapper that is
  common to all solvers accessible through the wrapper.

- *_interface.cc: each file corresponds to one of the solver accessible
   through the wrapper.

- linear_solver_test.cc: the C++ tests for the wrapper.

- python/... : the SWIG code that makes the wrapper available in Python,
  and its unit tests.

- java/... : the SWIG code that makes the wrapper available in Java,
  and its unit tests.

- csharp/... : the SWIG code that makes the wrapper available in C#,
  and its unit tests.

- linear_solver.proto: the protocol buffer for mathematical
  programming problems.