Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Simplify eggspressions #210

Merged
merged 37 commits into from
Jun 20, 2023
Merged
Show file tree
Hide file tree
Changes from 18 commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
a29a447
feat: use egg crate to simplify expressions
May 25, 2023
27c8a2f
chore: appease clippy in tests
May 25, 2023
2dbcc9b
fix: more rules, simpler analysis data
May 25, 2023
36284c1
chore: documentation
May 25, 2023
8d5e872
fix: more proper error handling
May 25, 2023
353b354
Merge branch 'main' into simplify-eggspressions
May 25, 2023
0341153
Merge branch 'main' into simplify-eggspressions
May 25, 2023
26c2113
ci: run clippy on --all-targets
May 25, 2023
2a5e7c3
fix: sidestep simplification if unwarranted
May 26, 2023
6b83e53
perf: parse sexpr into recexpr directly, no stringification
May 26, 2023
4900756
fix: simplify C, just derive "ordering"
May 26, 2023
b5b0753
fix: include percent symbol when turning variable into sexp
May 30, 2023
a5f42c3
chore: rename ConstantFold to Arithmetic
May 30, 2023
0d1519d
fix: better behaved names in proptests
May 31, 2023
d4f7fbf
fix!: no need for evaluating in simplifying
Jun 1, 2023
7d9f1d5
Merge branch 'main' into simplify-eggspressions
Jun 2, 2023
14de7e8
fix: appease 1.70 clippy
Jun 2, 2023
15af6fd
fix: suggestions from PR review
Jun 7, 2023
1829612
fix: whitespace
Jun 9, 2023
0c03931
fix: make rules lazy static; add a few more
Jun 9, 2023
f6f3e96
fix: get poetry run stubtest to pass
Jun 12, 2023
9c0a0cd
fix: add in some fixes from (closed) #219
Jun 12, 2023
53912d3
fix: better testing
Jun 12, 2023
56eaf3a
fix: add currently failing test
Jun 13, 2023
e0bbc89
fix: appease clippy; more failing tests
Jun 13, 2023
cea94d5
fix!: all tests pass now!
Jun 15, 2023
2b4983c
Merge branch 'main' into simplify-eggspressions
Jun 15, 2023
ced5f25
fix: some rule and arb_name updates
Jun 15, 2023
bf05eb1
fix: appease clippy
Jun 15, 2023
f5936d2
feat!: remove ordered-float dependency, simplify
Jun 15, 2023
6d2fc33
fix: simpler simplification, avoid some stringification
Jun 20, 2023
54b86b1
fix: move expression simplification to its own file
Jun 20, 2023
c3f363f
fix! expression <-> recexpr ourselves without symbolic_expressions
Jun 20, 2023
cd73d0d
fix: appease clippy
Jun 20, 2023
54eb664
Merge branch 'main' into simplify-eggspressions
Jun 20, 2023
f3753d9
Merge branch 'main' into simplify-eggspressions
Jun 20, 2023
81f3193
chore: remove Cargo.lock
kalzoo Jun 20, 2023
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
2 changes: 1 addition & 1 deletion .github/workflows/msrv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: clippy
args: -- -D warnings
args: --all-targets --all-features -- -D warnings

deny:
name: Deny
Expand Down
Loading