Skip to content

Commit b6b1013

Browse files
committed
disable 1-split
1 parent aa08107 commit b6b1013

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,4 @@ herbie-compiled/
2929

3030
.vscode/
3131
.worktrees
32+
PROJ_source/

growlibm/BenchmarkInstructions.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ When you receive a new source file:
2323
racket -y src/main.rkt report --platform no-accelerators <FPCORE FILE> out
2424
```
2525

26-
Fix any syntax errors Herbie reports (missing parentheses, unsupported identifiers, missing preconditions). Rerun until the file parses cleanly. Warnings about improvement quality are fine; only syntax errors must be resolved.
26+
Fix any syntax errors Herbie reports (missing parentheses, unsupported identifiers, missing preconditions). Rerun until the file parses cleanly. Warnings about improvement quality are fine; only syntax errors must be resolved. Make sure that the number of FPCores you
27+
add to the file is the same number that appears in the report when you run this command.
2728

2829
Aim for a set of 15–20 expressions that represent the numerical behaviors from the source file. Ideally, this collection will include hard expressions that Herbie has trouble improving.

src/core/rules.rkt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
[remove-double-neg (neg (neg a)) a]
8181
[*-lft-identity (* 1 a) a]
8282
[*-rgt-identity (* a 1) a]
83-
[1-split 1 (* 2 1/2)]
83+
;[1-split 1 (* 2 1/2)]
8484
[/-rgt-identity (/ a 1) a]
8585
[mul-1-neg (* -1 a) (neg a)])
8686

0 commit comments

Comments
 (0)