3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-07 07:45:46 +00:00

use netstandard 2.0 per recommendations

seems that now the recommended starting point is 2.0 and not lower.
This commit is contained in:
Nikolaj Bjorner 2021-12-25 13:44:40 -08:00
parent 6b0dc6d144
commit 7d311ac2ef
2 changed files with 4 additions and 4 deletions

View file

@ -269,7 +269,7 @@ namespace fpa {
expr* xe = e_x->get_expr();
expr* ye = e_y->get_expr();
if (m_fpa_util.is_bvwrap(xe) || m_fpa_util.is_bvwrap(ye))
if (fu.is_bvwrap(xe) || fu.is_bvwrap(ye))
return;
expr_ref xc = convert(xe);