Skip to content

Commit 9678683

Browse files
author
Wimmerer
committed
small changes
1 parent cbf0b61 commit 9678683

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

docs/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[deps]
22
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
3-
SuiteSparseGraphBLAS = "c2e53296-7b14-11e9-1210-bddfa8111e1d"
3+
SuiteSparseGraphBLAS = "c2e53296-7b14-11e9-1210-bddfa8111e1d"

docs/make.jl

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
1-
using Documenter, SuiteSparseGraphBLAS
1+
using Documenter
2+
using SuiteSparseGraphBLAS
23

34
makedocs(
45
modules = [SuiteSparseGraphBLAS],
56
sitename="SuiteSparse:GraphBLAS",
67
pages = [
7-
"Home" => "index.md"
8+
"Introduction" => "index.md",
9+
"Arrays" => "arrays.md".
10+
"Operations" => "operations.md"
811
]
912
)
1013

docs/src/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Below is an example of the adjacency matrix of a directed graph, and finding the
5858

5959
The three primary components of GraphBLAS are: matrices, operators, and operations. Operators include monoids, binary operators, and semirings. Operations include the typical linear algebraic operations like matrix multiplication as well as indexing operations.
6060

61-
## Matrices
61+
## GBArrays
6262

6363
SuiteSparseGraphBLAS.jl provides `GBVector` and `GBMatrix` array types which are subtypes of `SparseArrays.AbstractSparseVector` and `SparseArrays.AbstractSparseMatrix` respectively. Both can be constructed with no arguments to use the maximum size.
6464

@@ -101,7 +101,7 @@ v = GBVector([4], [10])
101101

102102
(3,0) 10
103103
```
104-
## Operations
104+
## GraphBLAS Operations
105105

106106
A complete list of supported operations can be found in [Operations](@ref).
107107
GraphBLAS operations are, where possible, wrapped in existing Julia functions. The equivalent Julia functions are:

0 commit comments

Comments
 (0)