turns out: we cant do 5 variables
This commit is contained in:
parent
d9556aeae9
commit
82db0d4e03
4 changed files with 1990 additions and 3 deletions
|
|
@ -25,6 +25,7 @@
|
|||
pkgs.mkShell {
|
||||
buildInputs = with pkgs; [
|
||||
gcc
|
||||
gcc.man
|
||||
gnumake
|
||||
readline.dev
|
||||
python3
|
||||
|
|
|
|||
2
main.py
2
main.py
|
|
@ -369,7 +369,7 @@ def calculate_simplifications(args, available_operators):
|
|||
|
||||
return costs, lookup
|
||||
|
||||
pathname = "simplifications.bin"
|
||||
pathname = ".simplifications.bin"
|
||||
|
||||
def get_simplifications(args, available_operators):
|
||||
available_operators = tuple(sorted(available_operators));
|
||||
|
|
|
|||
4
makefile
4
makefile
|
|
@ -10,9 +10,9 @@ cppflags += -D _GNU_SOURCE
|
|||
|
||||
cflags = -Werror -Wall -Wextra -Wstrict-prototypes -Wfatal-errors
|
||||
|
||||
cflags += -O3
|
||||
cflags += -O4
|
||||
|
||||
cflags += -Wno-unused
|
||||
# cflags += -Wno-unused
|
||||
|
||||
ldflags += -lreadline
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue