File: BUILD

package info (click to toggle)
cppnumericalsolvers 1.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 372 kB
  • sloc: cpp: 2,694; python: 236; sh: 20; makefile: 10
file content (21 lines) | stat: -rw-r--r-- 486 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package(default_visibility = ["//visibility:public"])

load("//:generator.bzl", "build_example", "build_test")

build_example("linearregression")
build_example("logisticregression")
build_example("rosenbrock")
build_example("rosenbrock_float")
build_example("simple")
build_example("simple_withoptions")
build_example("neldermead")
build_example("neldermead-customized")

build_test("verify")


py_binary(
    name = "lint",
    args = ["src/test/verify.cpp"],
    srcs = ["lint.py"],
)