Skip to content

Commit daf8332

Browse files
committed
Fixed bug where wrong specifier was used for printing SddLiteral
1 parent f9c3c09 commit daf8332

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pysdd/lib/libsdd-2.0/include/sdd.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ typedef double SddWmc; // weighted model count
3434
typedef long long SddLiteral; //literals of clauses
3535

3636
//control strings
37-
#define PRIsS "zu"
37+
#define PRIsS "lli"
3838
#define PRInsS "u"
3939
#define PRIrcS "u"
4040
#define PRImcS "llu"

pysdd/lib/sdd-2.0/include/sddapi.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ typedef long long SddLiteral; //literals of clauses
3131
typedef char SddNodeType; //holds one of two values defined next
3232

3333
//control strings
34-
#define PRIsS "zu"
34+
#define PRIsS "lli"
3535
#define PRInsS "u"
3636
#define PRIrcS "u"
3737
#define PRImcS "llu"

0 commit comments

Comments
 (0)