Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,13 @@ jobs:
matrix:
ghc-version:
# - "8.6.5"
- "8.8.4"
- "8.10.7"
# - "8.8.4"
# - "8.10.7"
- "9.4.8"
- "9.6.7"
# - "9.8.4"
- "9.8.4"
- "9.10.3"
- "9.12.2"

steps:
- uses: actions/checkout@v4
Expand Down
19 changes: 10 additions & 9 deletions examples/matrix_search/Makefile
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
PROJ_DEPS=../../src ../../tools ../../traq.cabal

all: matrix_search.qpl matrix_search_cq.qpl
all: matrix_search.qpl depth3_NAND_formula.qpl

matrix_search.qpl: matrix_search.qb $(PROJ_DEPS)
cd ../../ && cabal run uqplcompile -- \
-i examples/matrix_search/matrix_search.qb \
-o examples/matrix_search/matrix_search.qpl \
cd ../../ && cabal run compile -- \
-i examples/matrix_search/$< \
-o examples/matrix_search/$@ \
-p 0.001 \
--arg N=20 --arg M=10

matrix_search_cq.qpl: matrix_search.qb $(PROJ_DEPS)
cd ../../ && cabal run cqplcompile -- \
-i examples/matrix_search/matrix_search.qb \
-o examples/matrix_search/matrix_search_cq.qpl \
depth3_NAND_formula.qpl: depth3_NAND_formula.qb $(PROJ_DEPS)
cd ../../ && cabal run compile -- \
-i examples/matrix_search/$< \
-o examples/matrix_search/$@ \
-p 0.001 \
--arg N=20 --arg M=10
--arg N=20 --arg M=10 --arg K=10

5,720 changes: 5,720 additions & 0 deletions examples/matrix_search/depth3_NAND_formula.qpl

Large diffs are not rendered by default.

2,151 changes: 1,323 additions & 828 deletions examples/matrix_search/matrix_search.qpl

Large diffs are not rendered by default.

Loading
Loading