forked from google/or-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dotnet: Remove reference to dotnet release command
- Currently not implemented... Add abseil patch - Add patches/absl-config.cmake Makefile: Add abseil-cpp on unix - Force abseil-cpp SHA1 to 45221cc note: Just before the PR google#136 which break all CMake Makefile: Add abseil-cpp on windows - Force abseil-cpp SHA1 to 45221cc note: Just before the PR google#136 which break all CMake CMake: Add abseil-cpp - Force abseil-cpp SHA1 to 45221cc note: Just before the PR google#136 which break all CMake port to absl: C++ Part - Fix warning with the use of ABSL_MUST_USE_RESULT > The macro must appear as the very first part of a function declaration or definition: ... Note: past advice was to place the macro after the argument list. src: dependencies/sources/abseil-cpp-master/absl/base/attributes.h:418 - Rename enum after windows clash - Remove non compact table constraints - Change index type from int64 to int in routing library - Fix file_nonport compilation on windows - Fix another naming conflict with windows (NO_ERROR is a macro) - Cleanup hash containers; work on sat internals - Add optional_boolean sub-proto Sync cpp examples with internal code - reenable issue173 after reducing number of loops port to absl: Python Part - Add back cp_model.INT32_MIN|MAX for examples Update Python examples - Add random_tsp.py - Run words_square example - Run magic_square in python tests port to absl: Java Part - Fix compilation of the new routing parameters in java - Protect some code from SWIG parsing Update Java Examples port to absl: .Net Part Update .Net examples work on sat internals; Add C++ CP-SAT CpModelBuilder API; update sample code and recipes to use the new API; sync with internal code Remove VS 2015 in Appveyor-CI - abseil-cpp does not support VS 2015... improve tables upgrade C++ sat examples to use the new API; work on sat internals update license dates rewrite jobshop_ft06_distance.py to use the CP-SAT solver rename last example revert last commit more work on SAT internals fix
- Loading branch information
Showing
490 changed files
with
92,152 additions
and
24,887 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,48 +8,32 @@ environment: | |
matrix: | ||
# Makefile | ||
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 | ||
VS: 2017 | ||
BUILDER: make | ||
LANGUAGE: cc | ||
|
||
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 | ||
VS: 2017 | ||
BUILDER: make | ||
LANGUAGE: python | ||
|
||
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 | ||
VS: 2017 | ||
BUILDER: make | ||
LANGUAGE: java | ||
|
||
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 | ||
VS: 2017 | ||
BUILDER: make | ||
LANGUAGE: dotnet | ||
|
||
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 | ||
VS: 2015 | ||
BUILDER: make | ||
LANGUAGE: cc | ||
# CMake | ||
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 | ||
VS: 2017 | ||
BUILDER: cmake | ||
CMAKE_GENERATOR: "Visual Studio 15 2017 Win64" | ||
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 | ||
VS: 2015 | ||
BUILDER: cmake | ||
CMAKE_GENERATOR: "Visual Studio 14 2015 Win64" | ||
|
||
matrix: | ||
fast_finish: false | ||
|
||
before_build: | ||
- git config --global user.email "[email protected]" | ||
- git config --global user.name "CI" | ||
- if "%VS%"=="2017" call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars64.bat" | ||
- if "%VS%"=="2015" call "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64 | ||
- if "%VS%"=="2015" call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86_amd64 | ||
- call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars64.bat" | ||
- tools\win\which.exe csc.exe | ||
- tools\win\which.exe fsc.exe | ||
- tools\win\which.exe dotnet.exe | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
cmake_minimum_required(VERSION 3.5) | ||
|
||
# simplify variable expansion | ||
cmake_policy(SET CMP0053 NEW) | ||
cmake_policy(SET CMP0010 NEW) | ||
|
||
project(abseil-cpp-download NONE) | ||
|
||
include(ExternalProject) | ||
ExternalProject_Add(abseil-cpp_project | ||
GIT_REPOSITORY https://github.com/abseil/abseil-cpp | ||
GIT_TAG "45221cc" | ||
SOURCE_DIR "${CMAKE_BINARY_DIR}/abseil-cpp-src" | ||
BINARY_DIR "${CMAKE_BINARY_DIR}/abseil-cpp-build" | ||
UPDATE_COMMAND "" | ||
PATCH_COMMAND git apply "${PROJECT_SOURCE_DIR}/patches/abseil-cpp-master.patch" | ||
CONFIGURE_COMMAND "" | ||
BUILD_COMMAND "" | ||
INSTALL_COMMAND "" | ||
TEST_COMMAND "" | ||
LOG_DOWNLOAD ON | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.