mirror of
https://github.com/Z3Prover/z3
synced 2025-05-05 23:05:46 +00:00
add u256
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
8a773d2bee
commit
91ac15d716
4 changed files with 26 additions and 3 deletions
|
@ -15,6 +15,7 @@ Author:
|
|||
#include "math/polysat/linear_solver.h"
|
||||
#include "math/polysat/fixplex_def.h"
|
||||
#include "math/polysat/solver.h"
|
||||
#include "math/bigfix/u256.h"
|
||||
|
||||
namespace polysat {
|
||||
|
||||
|
@ -77,7 +78,11 @@ namespace polysat {
|
|||
b = alloc(fixplex<uint64_ext>, s.m_lim);
|
||||
break;
|
||||
case 128:
|
||||
NOT_IMPLEMENTED_YET();
|
||||
break;
|
||||
case 256:
|
||||
b = alloc(fixplex<generic_uint_ext<u256>>, s.m_lim);
|
||||
break;
|
||||
default:
|
||||
NOT_IMPLEMENTED_YET();
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue