3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-24 03:57:51 +00:00

whitespace

This commit is contained in:
Christoph M. Wintersteiger 2016-03-30 15:22:21 +01:00
parent 264bb6321a
commit d746b410cf
2 changed files with 34 additions and 34 deletions

View file

@ -8,7 +8,7 @@ Module Name:
Abstract:
Evaluates/Probes a goal.
A probe is used to build tactics (aka strategies) that
makes decisions based on the structure of a goal.
@ -49,7 +49,7 @@ public:
void inc_ref() { ++m_ref_count; }
void dec_ref() { SASSERT(m_ref_count > 0); --m_ref_count; if (m_ref_count == 0) dealloc(this); }
virtual result operator()(goal const & g) = 0;
};