mirror of
https://github.com/Jaxan/hybrid-ads.git
synced 2025-04-27 15:07:45 +02:00
Hopefully solved the initializer-list error in VS 2013 :(
This commit is contained in:
parent
fd750e4abd
commit
c61df91202
1 changed files with 7 additions and 7 deletions
|
@ -56,15 +56,15 @@ const splitting_tree & lca(const splitting_tree & root, Fun && f){
|
|||
*/
|
||||
|
||||
struct options {
|
||||
bool check_validity = true;
|
||||
bool cache_succesors = true;
|
||||
bool randomized = false;
|
||||
bool check_validity;
|
||||
bool cache_succesors;
|
||||
bool randomized;
|
||||
};
|
||||
|
||||
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};
|
||||
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
|
||||
|
|
Loading…
Add table
Reference in a new issue