3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-10-09 17:31:57 +00:00

print output file name

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2024-10-23 07:26:52 -07:00 committed by Lev Nachmanson
parent 8904a50103
commit 0db0efce9f
4 changed files with 178 additions and 139 deletions

View file

@ -28,8 +28,10 @@ template void indexed_vector<mpq>::resize(unsigned int);
template void indexed_vector<unsigned>::resize(unsigned int);
template void indexed_vector<mpq>::set_value(const mpq&, unsigned int);
template void indexed_vector<unsigned>::set_value(const unsigned&, unsigned int);
template void lp::indexed_vector< lp::mpq>::print(std::basic_ostream<char,struct std::char_traits<char> > &);
template void lp::indexed_vector<lp::numeric_pair<lp::mpq> >::print(std::ostream&);
template void indexed_vector<mpq>::print(std::basic_ostream<char,struct std::char_traits<char> > &);
template void indexed_vector<numeric_pair<lp::mpq> >::print(std::ostream&);
template void indexed_vector<mpq>::erase(unsigned int);
}
template void lp::indexed_vector<lp::numeric_pair<lp::mpq> >::erase_from_index(unsigned int);