Skip to content

Commit

Permalink
fixed idrup option position
Browse files Browse the repository at this point in the history
  • Loading branch information
Armin Biere committed Nov 28, 2023
1 parent b2f125c commit 24d0475
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
Version 1.9.0
Version 1.9.1
-------------

- Fixed position of 'idrup' option.

- Clause IDs in binary LRAT proofs are now always signed.

- Internal CNF regression suite also checks LRAT proofs now.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.9.0
1.9.1
2 changes: 1 addition & 1 deletion src/options.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -98,14 +98,14 @@ OPTION( flushfactor, 3, 1,1e3,0,0,1, "interval increase") \
OPTION( flushint, 1e5, 1,2e9,0,0,1, "initial limit") \
OPTION( forcephase, 0, 0, 1,0,0,1, "always use initial phase") \
OPTION( frat, 0, 0, 2,0,0,1, "1=frat(lrat), 2=frat(drat)") \
OPTION( idrup, 0, 0, 1,0,0,1, "incremental proof format") \
OPTION( ilb, 1, 0, 1,0,0,1, "ILB (incremental lazy backtrack)") \
OPTION( ilbassumptions, 1, 0, 1,0,0,1, "trail reuse for assumptions (ILB-like)") \
OPTION( inprocessing, 1, 0, 1,0,0,1, "enable inprocessing") \
OPTION( instantiate, 0, 0, 1,0,1,1, "variable instantiation") \
OPTION( instantiateclslim, 3, 2,2e9,0,0,1, "minimum clause size") \
OPTION( instantiateocclim, 1, 1,2e9,2,0,1, "maximum occurrence limit") \
OPTION( instantiateonce, 1, 0, 1,0,0,1, "instantiate each clause once") \
OPTION( idrup, 0, 0, 1,0,0,1, "incremental proof format") \
LOGOPT( log, 0, 0, 1,0,0,0, "enable logging") \
LOGOPT( logsort, 0, 0, 1,0,0,0, "sort logged clauses") \
OPTION( lrat, 0, 0, 1,0,0,1, "use lrat proof format") \
Expand Down
2 changes: 1 addition & 1 deletion src/version.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

#ifdef NBUILD
#ifndef VERSION
#define VERSION "1.9.0"
#define VERSION "1.9.1"
#endif // VERSION
#endif // NBUILD

Expand Down

0 comments on commit 24d0475

Please sign in to comment.