Skip to content
Draft
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
3 changes: 3 additions & 0 deletions .github/workflows/lean_action_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ env:
guruswami-sudan-core-small-koalabear,
guruswami-sudan-filtered-core-small-koalabear,
additive-ntt-btf3-l2-r2,additive-ntt-btf3-l4-r2,additive-ntt-btf4-l7-r2,
fields-tower-bt128-mul,fields-tower-bt128-inv,
fields-extension-koalabear-ext4-mul,fields-extension-koalabear-ext4-inv,
fields-extension-babybear-ext4-mul,fields-extension-babybear-ext4-inv,
fields-mont64x8-bn254-inv,fields-mont64x8-bls12-381-inv,
Expand Down Expand Up @@ -200,6 +201,8 @@ jobs:
run: |
bash scripts/build_timing_report.sh run test_path "$BUILD_TIMING_RESULTS" -- \
bash -eo pipefail -c 'lake test'
- name: Axiom sweep
run: lake exe axiomsweep --check
- name: Fail on build warnings
continue-on-error: true
run: lake build --wfail
Expand Down
4 changes: 4 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ Human contributors should usually start with [`README.md`](README.md),
`./scripts/update-lib.sh` and then `./scripts/check-imports.sh`.
4. Use `./scripts/lint-style.sh` when touching Lean style-sensitive files.
5. If you touch repo docs or links, run `python3 ./scripts/check-docs-integrity.py`.
6. When filling or adding a `sorry` (or anything that must stay axiom-clean), run
`lake exe axiomsweep --check`; refresh `scripts/axiom_baseline.json` with
`lake exe axiomsweep --update-baseline` and commit the diff if the change is
intentional. Native-compiler trust is never baselineable.

## Where To Work

Expand Down
2 changes: 2 additions & 0 deletions CompPoly.lean
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,8 @@ public import CompPoly.Fields.Binary.Tower.Concrete.Basis
public import CompPoly.Fields.Binary.Tower.Concrete.Core
public import CompPoly.Fields.Binary.Tower.Concrete.Field
public import CompPoly.Fields.Binary.Tower.Equiv
public import CompPoly.Fields.Binary.Tower.Fast
public import CompPoly.Fields.Binary.Tower.FastDefs
public import CompPoly.Fields.Binary.Tower.Impl
public import CompPoly.Fields.Binary.Tower.Prelude
public import CompPoly.Fields.Binary.Tower.Support.DefiningPoly
Expand Down
Loading
Loading