Compare commits
2 Commits
7ef544a28e
...
cc60c8c165
Author | SHA1 | Date |
---|---|---|
|
cc60c8c165 | |
|
262de073ec |
|
@ -49,7 +49,7 @@ macro(blt_add_project name source type)
|
||||||
project(skyscrapers-ga)
|
project(skyscrapers-ga)
|
||||||
endmacro()
|
endmacro()
|
||||||
|
|
||||||
project(skyscrapers-ga VERSION 0.0.6)
|
project(skyscrapers-ga VERSION 0.0.8)
|
||||||
|
|
||||||
option(ENABLE_ADDRSAN "Enable the address sanitizer" OFF)
|
option(ENABLE_ADDRSAN "Enable the address sanitizer" OFF)
|
||||||
option(ENABLE_UBSAN "Enable the ub sanitizer" OFF)
|
option(ENABLE_UBSAN "Enable the ub sanitizer" OFF)
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/python3
|
#!python3
|
||||||
|
|
||||||
import subprocess
|
import subprocess
|
||||||
import argparse
|
import argparse
|
||||||
|
|
|
@ -88,6 +88,11 @@ namespace sky
|
||||||
return board_data[row * board_size + column];
|
return board_data[row * board_size + column];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void set(const blt::i32 row, const blt::i32 column, const blt::i32 value)
|
||||||
|
{
|
||||||
|
board_data[row * board_size + column] = value;
|
||||||
|
}
|
||||||
|
|
||||||
void print() const;
|
void print() const;
|
||||||
|
|
||||||
void print(const problem_t& problem) const;
|
void print(const problem_t& problem) const;
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
#include <blt/std/hashmap.h>
|
#include <blt/std/hashmap.h>
|
||||||
#include <blt/std/logging.h>
|
#include <blt/std/logging.h>
|
||||||
#include <blt/std/random.h>
|
#include <blt/std/random.h>
|
||||||
|
#include <blt/std/utility.h>
|
||||||
|
|
||||||
namespace sky
|
namespace sky
|
||||||
{
|
{
|
||||||
|
@ -131,8 +132,8 @@ namespace sky
|
||||||
{
|
{
|
||||||
auto& random = get_random();
|
auto& random = get_random();
|
||||||
|
|
||||||
const auto first_begin = random.get_size_t(0, first.board_size * first.board_size - 1);
|
const auto first_begin = random.get_size_t(0, first.board_data.size() - 1);
|
||||||
const auto first_end = random.get_size_t(first_begin + 1, first.board_size * first.board_size);
|
const auto first_end = random.get_size_t(first_begin + 1, first.board_data.size());
|
||||||
|
|
||||||
const auto size = first_end - first_begin;
|
const auto size = first_end - first_begin;
|
||||||
|
|
||||||
|
@ -152,15 +153,56 @@ namespace sky
|
||||||
{
|
{
|
||||||
auto& random = get_random();
|
auto& random = get_random();
|
||||||
|
|
||||||
// TODO: better mutation
|
switch (random.get_i32(0, 3)) // NOLINT
|
||||||
const blt::i32 points = random.get_i32(0, 5);
|
|
||||||
for (blt::i32 i = 0; i < points; ++i)
|
|
||||||
{
|
{
|
||||||
const auto index = random.get_size_t(0, individual.board_size * individual.board_size);
|
case 0:
|
||||||
const auto replacement = random.get_i32(m_problem.min(), m_problem.max() + 1);
|
{
|
||||||
individual.board_data[index] = replacement;
|
const blt::i32 points = random.get_i32(0, 5);
|
||||||
|
for (blt::i32 i = 0; i < points; ++i)
|
||||||
|
{
|
||||||
|
const auto index = random.get_size_t(0, individual.board_data.size());
|
||||||
|
const auto replacement = random.get_i32(m_problem.min(), m_problem.max() + 1);
|
||||||
|
individual.board_data[index] = replacement;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return individual;
|
||||||
|
case 1:
|
||||||
|
{
|
||||||
|
const blt::size_t s1 = random.get_size_t(0, individual.board_data.size());
|
||||||
|
blt::size_t s2;
|
||||||
|
do
|
||||||
|
{
|
||||||
|
s2 = random.get_size_t(0, individual.board_data.size());
|
||||||
|
} while (s1 == s2);
|
||||||
|
const auto temp = individual.board_data[s1];
|
||||||
|
individual.board_data[s1] = individual.board_data[s2];
|
||||||
|
individual.board_data[s2] = temp;
|
||||||
|
}
|
||||||
|
return individual;
|
||||||
|
case 2:
|
||||||
|
{
|
||||||
|
if (random.choice())
|
||||||
|
{
|
||||||
|
const blt::i32 row = random.get_i32(0, individual.board_size);
|
||||||
|
std::vector<blt::i32> temp;
|
||||||
|
for (blt::i32 column = 0; column < individual.board_size; column++)
|
||||||
|
temp.push_back(individual.get(row, column));
|
||||||
|
std::shuffle(temp.begin(), temp.end(), random);
|
||||||
|
for (blt::i32 column = 0; column < individual.board_size; column++)
|
||||||
|
individual.set(row, column, temp[column]);
|
||||||
|
} else
|
||||||
|
{
|
||||||
|
const blt::i32 column = random.get_i32(0, individual.board_size);
|
||||||
|
std::vector<blt::i32> temp;
|
||||||
|
for (blt::i32 row = 0; row < individual.board_size; row++)
|
||||||
|
temp.push_back(individual.get(row, column));
|
||||||
|
std::shuffle(temp.begin(), temp.end(), random);
|
||||||
|
for (blt::i32 row = 0; row < individual.board_size; row++)
|
||||||
|
individual.set(row, column, temp[column]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return individual;
|
||||||
}
|
}
|
||||||
|
BLT_UNREACHABLE;
|
||||||
return individual;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -70,7 +70,7 @@ int main(int argc, const char** argv)
|
||||||
|
|
||||||
sky::genetic_algorithm ga{problem_d, 500, 0.8, 0.1};
|
sky::genetic_algorithm ga{problem_d, 500, 0.8, 0.1};
|
||||||
|
|
||||||
for (blt::i32 i = 0; i < 50; i++)
|
for (blt::i32 i = 0; i < 500; i++)
|
||||||
{
|
{
|
||||||
ga.run_step(2, 5);
|
ga.run_step(2, 5);
|
||||||
BLT_TRACE("Ran GP generation %d with average fitness %lf", i, ga.average_fitness());
|
BLT_TRACE("Ran GP generation %d with average fitness %lf", i, ga.average_fitness());
|
||||||
|
|
|
@ -66,7 +66,7 @@ namespace sky
|
||||||
return blt::unexpected(problem_t::error_t::MISSING_BOARD_DATA);
|
return blt::unexpected(problem_t::error_t::MISSING_BOARD_DATA);
|
||||||
}
|
}
|
||||||
|
|
||||||
blt::i32 index = 1;
|
blt::size_t index = 1;
|
||||||
|
|
||||||
auto top_problems = blt::string::split(lines[index++], '\t');
|
auto top_problems = blt::string::split(lines[index++], '\t');
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue