Modify interfaces to compile
2 files changed
tree: 12f8e5f1fffe8af4565a00726115a8721f743724
  1. .github/
  2. .travis/
  3. blas/
  4. diff/
  5. floats/
  6. fourier/
  7. graph/
  8. graphs/
  9. integrate/
  10. internal/
  11. lapack/
  12. mat/
  13. mathext/
  14. num/
  15. optimize/
  16. stat/
  17. unit/
  18. .travis.yml
  19. AUTHORS
  20. CONTRIBUTING.md
  21. CONTRIBUTORS
  22. go.mod
  23. GOPHER
  24. gopher.png
  25. LICENSE
  26. README.md
README.md

Gonum Build Status Coverage Status GoDoc Go Report Card

Installation

The core packages of the gonum suite are written in pure Go with some assembly. Installation is done using go get.

go get -u gonum.org/v1/gonum/...

Supported Go versions

Gonum supports and tests on the three most recent major versions of Go.

Build tags

The gonum packages use a variety of build tags to set non-standard build conditions. Building gonum applications will work without knowing how to use these tags, but they can be used during testing and to control the use of assembly and CGO code.

The current list of non-internal tags is as follows:

  • appengine — do not use assembly or unsafe
  • safe — synonym for appengine
  • bounds — use bounds checks even in internal calls
  • cblas — use CGO gonum.org/v1/netlib/blas/netlib BLAS implementation in tests (only in mat package)
  • noasm — do not use assembly implementations
  • tomita — use Tomita, Tanaka, Takahashi pivot choice for maximimal clique calculation, otherwise use random pivot (only in topo package)

Issues

If you find any bugs, feel free to file an issue on the github issue tracker. Discussions on API changes, added features, code review, or similar requests are preferred on the gonum-dev Google Group.

https://groups.google.com/forum/#!forum/gonum-dev