-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
40 lines (29 loc) · 1.09 KB
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name := "maths4programmers"
version := "0.1"
scalaVersion := "2.13.1"
libraryDependencies ++= Seq(
//Logging:
"ch.qos.logback" % "logback-classic" % "1.2.3",
"com.typesafe.scala-logging" % "scala-logging_2.13" % "3.9.2",
//Breeze:
"org.scalanlp" %% "breeze" % "1.0",
// Native libraries are not included by default. add this if you want them
// Native libraries greatly improve performance, but increase jar sizes.
// It also packages various blas implementations, which have licenses that may or may not
// be compatible with the Apache License. No GPL code, as best I know.
"org.scalanlp" %% "breeze-natives" % "1.0",
// The visualization library is distributed separately as well.
// It depends on LGPL code
"org.scalanlp" %% "breeze-viz" % "1.0",
//test
"org.scalatest" %% "scalatest" % "3.1.1" % "test"
)
initialCommands :=
"""
|import breeze.linalg._
|import breeze.plot._
|import breeze.numerics._
|import breeze.numerics.constants._
|import breeze.math._
|import actor.ali.m4p.util._
|""".stripMargin