1
Fork 0
mirror of https://github.com/Jaxan/hybrid-ads.git synced 2025-06-06 08:27:45 +02:00

Replaces constexpr with const

This commit is contained in:
Joshua Moerman 2015-04-07 09:06:05 +02:00
parent 795b79e85d
commit 2dd5d326cb

View file

@ -61,10 +61,10 @@ struct options {
bool randomized = false;
};
constexpr options lee_yannakakis_style{true, true, false};
constexpr options hopcroft_style{false, false, false};
constexpr options randomized_lee_yannakakis_style{true, true, true};
constexpr options randomized_hopcroft_style{false, false, true};
const options lee_yannakakis_style{true, true, false};
const options hopcroft_style{false, false, false};
const options randomized_lee_yannakakis_style{true, true, true};
const options randomized_hopcroft_style{false, false, true};
/*
* The algorithm to create a splitting tree also produces some other useful