Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
c76663f
feat: implement rpq-matrix algorithm with lor, concat and kleene opea…
suvorovrain Jul 20, 2025
5c4ec36
feat: add tests for rpq-matrix algorithm
suvorovrain Jul 20, 2025
718a363
fix: correct test data filenames
suvorovrain Jul 25, 2025
9249d63
fix: garbage in answer for a b query
suvorovrain Jul 27, 2025
452c0de
fix: correct test cases
suvorovrain Jul 31, 2025
049ac6d
feat: label handler function
suvorovrain Aug 2, 2025
8fd265f
feat: implement L and R kleene stars
suvorovrain Aug 2, 2025
912b1bf
feat: add rpq label into include
suvorovrain Aug 2, 2025
f734ee8
fix: typos
suvorovrain Aug 2, 2025
5983725
feat: update public interface
suvorovrain Oct 5, 2025
0d288e6
feat: add documentation
suvorovrain Oct 5, 2025
0bb1e67
fix: remove copy paste code
suvorovrain Oct 5, 2025
0921d2c
fix: docs typos
suvorovrain Oct 5, 2025
27a2d8a
fix: correct assertion
suvorovrain Oct 5, 2025
ef81062
fix: correct L and R kleene stars
suvorovrain Oct 5, 2025
5e7825b
fix: kleene rework
suvorovrain Oct 5, 2025
89daf4f
refactor: docs and format
suvorovrain Oct 5, 2025
4ba6720
fix: typo in function name
suvorovrain Oct 6, 2025
291b9b2
fix: incorrect assertions
suvorovrain Oct 6, 2025
16bafb3
fix: change kleene logic again
suvorovrain Oct 6, 2025
e860b97
feat: provide tests for RPQ-matrix
suvorovrain Oct 6, 2025
34d0489
feat: add matrix in deps for RPQ-matrix tests
suvorovrain Oct 6, 2025
8a17cff
fix: typo in l kleene comment
suvorovrain Oct 6, 2025
d0893ff
feat: change kleene logic
suvorovrain Oct 6, 2025
6c30ede
refactor: add spaces before semicolon
suvorovrain Oct 6, 2025
873f1d6
feat: additional non null assertion in lor
suvorovrain Oct 6, 2025
145fe75
fix: free matrices in tests
suvorovrain Oct 6, 2025
ecabbef
feat: change semiring and monoid operator
suvorovrain Oct 8, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions data/rpq_data/c.mtx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
%%MatrixMarket matrix coordinate pattern general$
%%GraphBLAS type bool$
8 8 14
1 2
1 4
1 7
2 3
2 8
3 1
3 6
4 5
5 2
5 8
6 4
7 1
7 6
8 3
Loading
Loading