@@ -38,7 +38,7 @@ cuBool_Matrix regular_path_query_with_transposed(
3838 }
3939 }
4040
41- // get number of automat nodes
41+ // get number of automaton nodes
4242 for (auto label_matrix : automaton) {
4343 if (label_matrix != nullptr ) {
4444 cuBool_Matrix_Nrows (label_matrix, &automaton_nodes_number);
@@ -126,7 +126,7 @@ cuBool_Matrix regular_path_query_with_transposed(
126126cuBool_Matrix regular_path_query (
127127 // vector of sparse graph matrices for each label
128128 const std::vector<cuBool_Matrix> &graph, const std::vector<cuBool_Index> &source_vertices,
129- // vector of sparse automat matrices for each label
129+ // vector of sparse automaton matrices for each label
130130 const std::vector<cuBool_Matrix> &automaton, const std::vector<cuBool_Index> &start_states,
131131 // work with inverted labels
132132 const std::vector<bool > &inversed_labels_input, bool all_labels_are_inversed) {
@@ -153,7 +153,7 @@ cuBool_Matrix regular_path_query(
153153 assert (status == CUBOOL_STATUS_SUCCESS);
154154 }
155155
156- // transpose automat matrices
156+ // transpose automaton matrices
157157 std::vector<cuBool_Matrix> automaton_transposed;
158158 automaton_transposed.reserve (automaton.size ());
159159 for (auto label_matrix : automaton) {
0 commit comments