diff options
| author | Sebastiano Tronto <sebastiano.tronto@gmail.com> | 2021-12-12 12:13:42 +0100 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano.tronto@gmail.com> | 2021-12-12 12:13:42 +0100 |
| commit | 490d6b168d29b46e55c48c59b5bdde281eebe67e (patch) | |
| tree | f9ca5c3e9e26de580240cc9af22e06d3b7989bfe /src/pf.c | |
| parent | 9725570d740041b51d6bdfbc8416498ddad77666 (diff) | |
| download | nissy-490d6b168d29b46e55c48c59b5bdde281eebe67e.tar.gz nissy-490d6b168d29b46e55c48c59b5bdde281eebe67e.zip | |
Faster inverse cube; makes optimal solving about 30% faster
Diffstat (limited to '')
| -rw-r--r-- | src/pf.c | 15 |
1 files changed, 15 insertions, 0 deletions
| @@ -78,3 +78,18 @@ pf_co = { | |||
| 78 | .corl = true, | 78 | .corl = true, |
| 79 | .coud = true | 79 | .coud = true |
| 80 | }; | 80 | }; |
| 81 | |||
| 82 | PieceFilter | ||
| 83 | pf_coud = { | ||
| 84 | .coud = true | ||
| 85 | }; | ||
| 86 | |||
| 87 | PieceFilter | ||
| 88 | pf_edges = { | ||
| 89 | .epose = true, | ||
| 90 | .eposs = true, | ||
| 91 | .eposm = true, | ||
| 92 | .eofb = true, | ||
| 93 | .eorl = true, | ||
| 94 | .eoud = true | ||
| 95 | }; | ||
