2020-09-25 17:45:25 +02:00
|
|
|
# Introduction
|
2020-12-05 23:17:55 +01:00
|
|
|
|
2020-09-25 17:45:25 +02:00
|
|
|
This file describes how to use OR-Tools in C++ with the binary archives.
|
|
|
|
|
|
2021-08-15 23:11:16 +07:00
|
|
|
OR-Tools online documentation is
|
2020-09-25 17:45:25 +02:00
|
|
|
[here](https://developers.google.com/optimization)
|
|
|
|
|
|
|
|
|
|
Full installation instructions are located
|
|
|
|
|
[here](https://developers.google.com/optimization/install/cpp/)
|
|
|
|
|
|
|
|
|
|
These modules have been tested under:
|
2020-12-05 23:17:55 +01:00
|
|
|
|
2020-09-25 17:45:25 +02:00
|
|
|
- Ubuntu 20.04 LTS (64 bit).
|
|
|
|
|
- CentOS 8 (64 bit).
|
|
|
|
|
- Debian 10 (64 bit).
|
|
|
|
|
- MacOS Catalina with Xcode 10.x (64 bit).
|
|
|
|
|
- Microsoft Windows with Visual Studio 2019 (64-bit)
|
|
|
|
|
|
|
|
|
|
Upon decompressing the archive, you will get the following structure:
|
2020-12-05 23:17:55 +01:00
|
|
|
|
2020-09-25 17:45:25 +02:00
|
|
|
```
|
|
|
|
|
or-tools/
|
2022-03-03 14:25:39 +01:00
|
|
|
[LICENSE](LICENSE) <- Apache License
|
|
|
|
|
[README.md](README.md) <- This file
|
|
|
|
|
[examples/data/](examples/data) <- Data for the examples
|
|
|
|
|
[examples/cpp](examples/cpp) <- C++ examples
|
2020-09-25 17:45:25 +02:00
|
|
|
```
|