solidity/libsmtutil/Sorts.cpp

39 lines
1.1 KiB
C++
Raw Normal View History

2020-03-24 19:51:52 +00:00
/*
This file is part of solidity.
solidity is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
solidity is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with solidity. If not, see <http://www.gnu.org/licenses/>.
*/
// SPDX-License-Identifier: GPL-3.0
2020-03-24 19:51:52 +00:00
2020-05-18 15:42:24 +00:00
#include <libsmtutil/Sorts.h>
2020-03-24 19:51:52 +00:00
using namespace std;
2020-05-19 12:14:46 +00:00
namespace solidity::smtutil
2020-03-24 19:51:52 +00:00
{
shared_ptr<Sort> const SortProvider::boolSort{make_shared<Sort>(Kind::Bool)};
2020-05-13 11:08:48 +00:00
shared_ptr<IntSort> const SortProvider::uintSort{make_shared<IntSort>(false)};
shared_ptr<IntSort> const SortProvider::sintSort{make_shared<IntSort>(true)};
shared_ptr<IntSort> SortProvider::intSort(bool _signed)
{
if (_signed)
return sintSort;
return uintSort;
}
2020-03-24 19:51:52 +00:00
}