Skip to content

Commit e75d4c0

Browse files
committed
[new release] spurs (0.1.1)
CHANGES: #### New functionalty: - Added new functions in `ops.ml`: - `add_v` - `dot_v` - `mult` - `add` - Added new functions in `csmat.ml`: - `append` - `expand` - Added new functions in `csvec.ml`: - `of_dense` - `scale` #### Other Changes: ##### New Property-based testing suite Several of the new and existing functions are now extensively tested with property-based tests in `QCheck2`. These have found bugs in the existing functions which are now fixed.
1 parent 0555a4d commit e75d4c0

File tree

1 file changed

+44
-0
lines changed
  • packages/spurs/spurs.0.1.1

1 file changed

+44
-0
lines changed

packages/spurs/spurs.0.1.1/opam

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
opam-version: "2.0"
2+
synopsis: "A lightweight native sparse matrix library"
3+
maintainer: ["Nikhil Kamath <[email protected]"]
4+
authors: ["Nikhil Kamath <[email protected]>"]
5+
license: "MIT"
6+
tags: ["sparse" "matrices"]
7+
homepage: "https://github.com/nikhil-kamath/spurs"
8+
doc: "https://nikhil-kamath.github.io/spurs/"
9+
bug-reports: "https://github.com/nikhil-kamath/spurs/issues"
10+
depends: [
11+
"dune" {>= "3.17"}
12+
"ocaml" {>= "5.3.0"}
13+
"ppx_deriving"
14+
"ppx_fields_conv"
15+
"fmt"
16+
"alcotest" {with-test}
17+
"qcheck" {with-test}
18+
"qcheck-alcotest" {with-test}
19+
"odoc" {with-doc}
20+
]
21+
build: [
22+
["dune" "subst"] {dev}
23+
[
24+
"dune"
25+
"build"
26+
"-p"
27+
name
28+
"-j"
29+
jobs
30+
"@install"
31+
"@runtest" {with-test}
32+
"@doc" {with-doc}
33+
]
34+
]
35+
dev-repo: "git+https://github.com/nikhil-kamath/spurs.git"
36+
url {
37+
src:
38+
"https://github.com/nikhil-kamath/spurs/releases/download/v0.1.1/spurs-0.1.1.tbz"
39+
checksum: [
40+
"sha256=c59be7af57a6902941cfa3d446fb83e4cb58876fc7208008d1ae38a1d4e189cc"
41+
"sha512=86bd6e099ac1441e4fecd2ce59fdc878d437dc0f7f4d2bd21a08fac675a99355b745a009d1040104ef106220ede8aa10f71e7ca85c982d2ddc7bc5e76aa69166"
42+
]
43+
}
44+
x-commit-hash: "672ba6880adf9f873af7559fda6b6606eb086610"

0 commit comments

Comments
 (0)