This commit is contained in:
2025-10-08 19:41:46 +02:00
parent 0dedb2d6b9
commit dddf8ca632
2 changed files with 2 additions and 2 deletions

View File

@@ -121,7 +121,7 @@ bool try_remove(std::filesystem::path path)
{
try
{
std::filesystem::remove("old_build");
std::filesystem::remove(path);
return true;
}
catch (const std::exception &e)

View File

@@ -4,7 +4,7 @@
namespace Similarity
{
// float euclidean_distance(Dna *d1, Dna *d2); direct distance betwen vector. wont give 0 and 1
// float dot_product(Dna *d1, Dna *d2); doent return betwen 0 to 1
// float dot_product(Dna *d1, Dna *d2); doent return betwen 0 to 1
// float cosine_similarity(Dna *d1, Dna *d2);
// float cosine_similarity_int(Dna *d1, Dna *d2);
float hamming_distance(Dna *d1, Dna *d2);