/* 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 . */ #include #include #include #include using namespace std; using namespace solidity::yul; using namespace boost::test_tools; namespace solidity::phaser::test { BOOST_AUTO_TEST_SUITE(Phaser) BOOST_AUTO_TEST_SUITE(CommonTest) BOOST_AUTO_TEST_CASE(enumerateOptimisationSteps_should_assing_indices_to_all_available_optimisation_steps) { map stepsAndAbbreviations = OptimiserSuite::stepNameToAbbreviationMap(); map stepsAndIndices = enumerateOptmisationSteps(); BOOST_TEST(stepsAndIndices.size() == stepsAndAbbreviations.size()); set stepsSoFar; for (auto& [name, index]: stepsAndIndices) { BOOST_TEST(index >= 0); BOOST_TEST(index <= stepsAndAbbreviations.size()); BOOST_TEST(stepsAndAbbreviations.count(name) == 1); BOOST_TEST(stepsSoFar.count(name) == 0); stepsSoFar.insert(name); } } BOOST_AUTO_TEST_CASE(mean_should_calculate_statistical_mean) { BOOST_TEST(mean({0}) == 0.0); BOOST_TEST(mean({0, 0, 0, 0}) == 0.0); BOOST_TEST(mean({5, 5, 5, 5}) == 5.0); BOOST_TEST(mean({0, 1, 2, 3}) == 1.5); BOOST_TEST(mean({-4, -3, -2, -1, 0, 1, 2, 3}) == -0.5); BOOST_TEST(mean({1.3, 1.1, 0.0, 1.5, 1.1, 2.0, 1.5, 1.5}) == 1.25); } BOOST_AUTO_TEST_CASE(meanSquaredError_should_calculate_average_squared_difference_between_samples_and_expected_value) { BOOST_TEST(meanSquaredError({0}, 0.0) == 0.0); BOOST_TEST(meanSquaredError({0}, 1.0) == 1.0); BOOST_TEST(meanSquaredError({0, 0, 0, 0}, 0.0) == 0.0); BOOST_TEST(meanSquaredError({0, 0, 0, 0}, 1.0) == 1.0); BOOST_TEST(meanSquaredError({0, 0, 0, 0}, 2.0) == 4.0); BOOST_TEST(meanSquaredError({5, 5, 5, 5}, 1.0) == 16.0); BOOST_TEST(meanSquaredError({0, 1, 2, 3}, 2.0) == 1.5); BOOST_TEST(meanSquaredError({-4, -3, -2, -1, 0, 1, 2, 3}, -4.0) == 17.5); BOOST_TEST(meanSquaredError({1.3, 1.1, 0.0, 1.5, 1.1, 2.0, 1.5, 1.5}, 1.0) == 0.3575, tolerance(0.0001)); } BOOST_AUTO_TEST_SUITE_END() BOOST_AUTO_TEST_SUITE_END() }