diff options
author | A. Unique TensorFlower <gardener@tensorflow.org> | 2017-05-03 10:14:21 -0800 |
---|---|---|
committer | TensorFlower Gardener <gardener@tensorflow.org> | 2017-05-03 11:30:55 -0700 |
commit | 87ffdd2d500674c28b95abec7cb9b2f7eb0bba91 (patch) | |
tree | 7db1cbdacabf11b3abc25f0052f5245044b3ac03 /third_party | |
parent | 427081c11b55d494b92fa836f67ad07439096115 (diff) |
Internal change
Change: 154978617
Diffstat (limited to 'third_party')
-rw-r--r-- | third_party/ortools.BUILD | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/third_party/ortools.BUILD b/third_party/ortools.BUILD new file mode 100644 index 0000000000..61191e3d27 --- /dev/null +++ b/third_party/ortools.BUILD @@ -0,0 +1,13 @@ +# Google's software suite for combinatorial optimization + +licenses(["notice"]) # Apache2 license + +exports_files(["LICENSE-2.0.txt"]) + +native.cc_library( + name = "linear_solver_glop", + deps = [ + "@ortools_archive//linear_solver:linear_solver_glop", + ], + visibility = ["//visibility:public"], +) |