@@ -1998,7 +1998,7 @@ \subsubsection{{\sf Matrix\_import}: Import a matrix into a GraphBLAS object \be
1998
1998
\begin {itemize }[leftmargin=2.3in]
1999
1999
\item [{\sf GrB\_ SUCCESS}] In blocking mode, the operation completed
2000
2000
successfully. In non-blocking mode, this indicates that the API checks
2001
- for the input arguments passed successfully\scott { and the input arrays have been consumed?} .
2001
+ for the input arguments passed successfully and the input arrays have been consumed.
2002
2002
Either way, output matrix {\sf A} is ready to be used in the next method of the sequence.
2003
2003
2004
2004
\item [{\sf GrB\_ PANIC}] Unknown internal error.
@@ -2060,7 +2060,8 @@ \subsubsection{{\sf Matrix\_serializeSize}: Compute the serialize buffer size\be
2060
2060
\paragraph {Return Values }
2061
2061
2062
2062
\begin {itemize }[leftmargin=2.3in]
2063
- \item [{\sf GrB\_ SUCCESS}] The operation completed successfully.
2063
+ \item [{\sf GrB\_ SUCCESS}] The operation completed successfully and
2064
+ the value pointed to by {\sf *size} has been computed and is ready to use.
2064
2065
2065
2066
\item [{\sf GrB\_ PANIC}] Unknown internal error.
2066
2067
@@ -2086,7 +2087,7 @@ \subsubsection{{\sf Matrix\_serialize}: Serialize a GraphBLAS matrix. \ben{NEW C
2086
2087
2087
2088
\begin {Verbatim }[samepage=true]
2088
2089
GrB_Info GrB_Matrix_serialize(void *serialized_data,
2089
- GrB_Index *serialized_size
2090
+ GrB_Index *serialized_size,
2090
2091
GrB_Matrix A);
2091
2092
\end {Verbatim }
2092
2093
@@ -2101,9 +2102,11 @@ \subsubsection{{\sf Matrix\_serialize}: Serialize a GraphBLAS matrix. \ben{NEW C
2101
2102
\paragraph {Return Values }
2102
2103
2103
2104
\begin {itemize }[leftmargin=2.3in]
2104
- \item [{\sf GrB\_ SUCCESS}] The operation completed successfully. This
2105
- means that the buffer pointed to by {\sf serialized\_ data} contains a
2106
- serialized copy of the matrix.
2105
+
2106
+ \item [{\sf GrB\_ SUCCESS}] In blocking or non-blocking mode, the operation
2107
+ completed successfully. This indicates that the compatibility tests on
2108
+ the input argument passed successfully, and the output buffer {\sf serialized\_ data}
2109
+ and {\sf serialized\_ size}, have been computed and are ready to use.
2107
2110
2108
2111
\item [{\sf GrB\_ PANIC}] Unknown internal error.
2109
2112
@@ -2147,7 +2150,7 @@ \subsubsection{{\sf Matrix\_deserialize}: Deserialize a GraphBLAS matrix. \ben{N
2147
2150
\begin {Verbatim }[samepage=true]
2148
2151
GrB_Info GrB_Matrix_deserialize(GrB_Matrix *A,
2149
2152
GrB_Type d,
2150
- void *serialized_data
2153
+ const void *serialized_data,
2151
2154
GrB_Index serialized_size);
2152
2155
\end {Verbatim }
2153
2156
0 commit comments