python: Rework README.pypi.txt
This commit is contained in:
@@ -283,7 +283,7 @@ file(GENERATE
|
||||
# WORKING_DIRECTORY python)
|
||||
|
||||
configure_file(
|
||||
${PROJECT_SOURCE_DIR}/tools/README.pypi.txt
|
||||
${PROJECT_SOURCE_DIR}/ortools/python/README.pypi.txt
|
||||
${PROJECT_BINARY_DIR}/python/README.txt
|
||||
COPYONLY)
|
||||
|
||||
|
||||
1
cmake/vagrant/freebsd/python/Vagrantfile
vendored
1
cmake/vagrant/freebsd/python/Vagrantfile
vendored
@@ -90,7 +90,6 @@ Vagrant.configure("2") do |config|
|
||||
config.vm.provision "file", source: "../../../../examples/tests", destination: "$HOME/project/examples/"
|
||||
config.vm.provision "file", source: "../../../../patches", destination: "$HOME/project/"
|
||||
config.vm.provision "file", source: "../../../../Version.txt", destination: "$HOME/project/"
|
||||
config.vm.provision "file", source: "../../../../tools/README.pypi.txt", destination: "$HOME/project/tools/"
|
||||
|
||||
config.vm.provision "devel", type: "shell", inline:<<-SHELL
|
||||
set -x
|
||||
|
||||
@@ -455,8 +455,8 @@ $(PYPI_ARCHIVE_TEMP_DIR)/ortools: | $(PYPI_ARCHIVE_TEMP_DIR)
|
||||
$(PYPI_ARCHIVE_TEMP_DIR)/ortools/ortools: | $(PYPI_ARCHIVE_TEMP_DIR)/ortools
|
||||
$(MKDIR) $(PYPI_ARCHIVE_TEMP_DIR)$Sortools$Sortools
|
||||
|
||||
$(PYPI_ARCHIVE_TEMP_DIR)/ortools/README.txt: tools/README.pypi.txt | $(PYPI_ARCHIVE_TEMP_DIR)/ortools
|
||||
$(COPY) tools$SREADME.pypi.txt $(PYPI_ARCHIVE_TEMP_DIR)$Sortools$SREADME.txt
|
||||
$(PYPI_ARCHIVE_TEMP_DIR)/ortools/README.txt: ortools/python/README.pypi.txt | $(PYPI_ARCHIVE_TEMP_DIR)/ortools
|
||||
$(COPY) ortools$Spython$SREADME.pypi.txt $(PYPI_ARCHIVE_TEMP_DIR)$Sortools$SREADME.txt
|
||||
|
||||
$(PYPI_ARCHIVE_TEMP_DIR)/ortools/LICENSE: LICENSE | $(PYPI_ARCHIVE_TEMP_DIR)/ortools
|
||||
$(COPY) LICENSE $(PYPI_ARCHIVE_TEMP_DIR)$Sortools
|
||||
|
||||
19
ortools/python/README.pypi.txt
Normal file
19
ortools/python/README.pypi.txt
Normal file
@@ -0,0 +1,19 @@
|
||||
This project hosts operations research tools developed at Google and
|
||||
made available as open source under the Apache 2.0 License.
|
||||
|
||||
OR-Tools includes solvers for:
|
||||
|
||||
- Constraint Programming
|
||||
- CP-SAT solver: A constraint programming solver that uses SAT (satisfiability)
|
||||
methods.
|
||||
- Original CP solver: A constraint programming solver.
|
||||
- Linear and Mixed-Integer Programming
|
||||
- Glop: A linear optimizer to find the optimal value of a linear objective
|
||||
function, given a set of linear inequalities as constraints.
|
||||
- Wrappers around commercial and other open source solvers, including mixed
|
||||
integer solvers: CBC, CLP, GLPK, Gurobi or SCIP
|
||||
- Vehicle Routing
|
||||
A specialized library for identifying best vehicle routes given constraints.
|
||||
- Graph Algorithms
|
||||
Code for finding shortest paths in graphs, min-cost flows, max flows, and
|
||||
linear sum assignments.
|
||||
@@ -1,15 +0,0 @@
|
||||
This project hosts operations research tools developed at Google and
|
||||
made available as open source under the Apache 2.0 License.
|
||||
|
||||
The project contains several tools:
|
||||
|
||||
- A Constraint Programming solver
|
||||
- A Linear Programming solvers
|
||||
- Wrappers around commercial and other open source solvers, including mixed integer solvers
|
||||
- CBC, CLP, CPLEX, GLPK, Gurobi, SCIP and XPRESS
|
||||
- Bin packing and knapsack algorithms
|
||||
- Graph algorithms:
|
||||
- shortest paths
|
||||
- min-cost flow
|
||||
- max flow
|
||||
- linear sum assignment
|
||||
Reference in New Issue
Block a user