Skip to content

Commit 3481e71

Browse files
add context methods
1 parent 0d0695f commit 3481e71

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

docs/make.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,12 @@ makedocs(
77
doctest = false,
88
pages = Any[
99
"Home" => "index.md",
10+
"Context methods" => "context_methods.md",
1011
"Basic matrix & vector methods" => "matrix_and_vector_methods.md",
1112
"Operators & algebraic structures" => "algebra_methods.md",
1213
"Descriptors" => "desc_methods.md",
13-
"Freeing objects" => "free_methods.md"
14+
"Freeing objects" => "free_methods.md",
15+
"Sequence termination" => "seq_ter.md"
1416
]
1517
)
1618

docs/src/context_methods.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
## Context methods
2+
3+
```@docs
4+
GrB_init
5+
GrB_finalize
6+
```

docs/src/seq_ter.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
## Sequence termination
2+
3+
```@docs
4+
GrB_wait
5+
GrB_error
6+
```

0 commit comments

Comments
 (0)