Cleaning code

This commit is contained in:
aletempiac 2024-05-02 10:06:40 +02:00
parent 043a2ffcc6
commit 39ed8b36d4
3 changed files with 1 additions and 3 deletions

View File

@ -459,7 +459,7 @@ private:
if ( free_set_size == offset )
{
best_cost = fn( tt );
return { tt, permutations, best_cost };
return std::make_tuple( tt, permutations, best_cost );
}
/* works up to 16 input truth tables */

View File

@ -6,7 +6,6 @@
#include <cassert>
#include <functional>
#include <iterator>
#include <optional>
#include <iostream>
#include "kitty_algorithm.hpp"

View File

@ -6,7 +6,6 @@
#include <cassert>
#include <functional>
#include <iterator>
#include <optional>
#include "kitty_constants.hpp"
#include "kitty_dynamic_tt.hpp"