File tree Expand file tree Collapse file tree 5 files changed +36
-6
lines changed Expand file tree Collapse file tree 5 files changed +36
-6
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,10 @@ makedocs(
7
7
doctest = false ,
8
8
pages = Any[
9
9
" Introduction" => " index.md" ,
10
- " Basic matrix functions" => " matrix_methods.md" ,
11
- " Basic vector functions" => " vector_methods.md"
10
+ " Basic matrix & vector methods" => " matrix_and_vector_methods.md" ,
11
+ " Operators & algebraic structures" => " algebra_methods.md"
12
+ " Descriptors" => " desc_methods.md" ,
13
+ " Freeing objects" => " free_methods.md"
12
14
]
13
15
)
14
16
Original file line number Diff line number Diff line change 1
- ## Basic matrix functions
1
+ ## Algebra methods
2
2
3
3
``` @autodocs
4
4
Modules = [SuiteSparseGraphBLAS]
5
5
Pages = [
6
- "Object_Methods/Matrix_Methods .jl",
6
+ "Object_Methods/Algebra_Methods .jl",
7
7
]
8
8
Private = false
9
9
```
Original file line number Diff line number Diff line change 1
- ## Basic vector functions
1
+ ## Descriptor methods
2
2
3
3
``` @autodocs
4
4
Modules = [SuiteSparseGraphBLAS]
5
5
Pages = [
6
- "Object_Methods/Vector_Methods .jl",
6
+ "Object_Methods/Descriptor_Methods .jl",
7
7
]
8
8
Private = false
9
9
```
Original file line number Diff line number Diff line change
1
+ ## Free methods
2
+
3
+ ``` @autodocs
4
+ Modules = [SuiteSparseGraphBLAS]
5
+ Pages = [
6
+ "Object_Methods/Free_Objects.jl",
7
+ ]
8
+ Private = false
9
+ ```
Original file line number Diff line number Diff line change
1
+ ## Matrix functions
2
+
3
+ ``` @autodocs
4
+ Modules = [SuiteSparseGraphBLAS]
5
+ Pages = [
6
+ "Object_Methods/Matrix_Methods.jl",
7
+ ]
8
+ Private = false
9
+ ```
10
+
11
+ ## Vector functions
12
+
13
+ ``` @autodocs
14
+ Modules = [SuiteSparseGraphBLAS]
15
+ Pages = [
16
+ "Object_Methods/Vector_Methods.jl",
17
+ ]
18
+ Private = false
19
+ ```
You can’t perform that action at this time.
0 commit comments