Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/tests/main/implication_query_evolution_main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@ static double ELITISM_RATE = 0.08;
static unsigned int LINK_BUILDING_QUERY_SIZE = 150;
static unsigned int POPULATION_SIZE = 50;
static unsigned int MAX_GENERATIONS = 20;
static unsigned int NUM_ITERATIONS = 10;
static unsigned int NUM_ITERATIONS = 1;

static bool CONTEXT_CREATION_ONLY = true;
static bool CONTEXT_CREATION_ONLY = false;
static bool SAVE_NEW_LINKS = true;
static string NEW_LINKS_FILE_NAME = "newly_created_links.txt";
static string CONTEXT_FILE_NAME = "_CONTEXT_DUMP";
Expand Down Expand Up @@ -944,6 +944,7 @@ static void run(const string& predicate_source,
AttentionBrokerClient::save_context(context, CONTEXT_FILE_NAME);
exit(0);
} else {
update_attention_allocation(predicate_source, predicate_target, context);
}
// update_context(predicate_source, predicate_target, context_proxy);

Expand Down
Loading