mirror of https://github.com/YosysHQ/abc.git
Cleaning code
This commit is contained in:
parent
043a2ffcc6
commit
39ed8b36d4
|
|
@ -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 */
|
||||
|
|
|
|||
|
|
@ -6,7 +6,6 @@
|
|||
#include <cassert>
|
||||
#include <functional>
|
||||
#include <iterator>
|
||||
#include <optional>
|
||||
#include <iostream>
|
||||
|
||||
#include "kitty_algorithm.hpp"
|
||||
|
|
|
|||
|
|
@ -6,7 +6,6 @@
|
|||
#include <cassert>
|
||||
#include <functional>
|
||||
#include <iterator>
|
||||
#include <optional>
|
||||
|
||||
#include "kitty_constants.hpp"
|
||||
#include "kitty_dynamic_tt.hpp"
|
||||
|
|
|
|||
Loading…
Reference in New Issue