mirror of
https://github.com/Z3Prover/z3
synced 2025-10-06 16:01:55 +00:00
Use nullptr.
This commit is contained in:
parent
f01328c65f
commit
76eb7b9ede
625 changed files with 4639 additions and 4639 deletions
|
@ -23,7 +23,7 @@ Abstract:
|
|||
namespace datalog {
|
||||
class aig_exporter {
|
||||
public:
|
||||
aig_exporter(const rule_set& rules, context& ctx, const fact_vector *facts = 0);
|
||||
aig_exporter(const rule_set& rules, context& ctx, const fact_vector *facts = nullptr);
|
||||
void operator()(std::ostream& out);
|
||||
|
||||
private:
|
||||
|
@ -60,7 +60,7 @@ namespace datalog {
|
|||
unsigned mk_or(unsigned id1, unsigned id2);
|
||||
unsigned get_var(const expr *e);
|
||||
unsigned mk_var(const expr *e);
|
||||
unsigned mk_input_var(const expr *e = 0);
|
||||
unsigned mk_input_var(const expr *e = nullptr);
|
||||
unsigned mk_expr_id();
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue