Skip to content

Commit

Permalink
improved candidate search
Browse files Browse the repository at this point in the history
  • Loading branch information
SJulianS committed May 16, 2024
1 parent 8f1d845 commit a3c102e
Show file tree
Hide file tree
Showing 2 changed files with 350 additions and 133 deletions.
7 changes: 7 additions & 0 deletions plugins/hawkeye/include/hawkeye/candidate_search.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@

#pragma once

#include "hal_core/utilities/enums.h"
#include "hal_core/utilities/result.h"
#include "hawkeye/candidate.h"

Expand Down Expand Up @@ -65,4 +66,10 @@ namespace hal
*/
Result<std::vector<Candidate>> detect_candidates(Netlist* nl, const std::vector<DetectionConfiguration>& configs, u32 min_state_size = 40, const std::vector<Gate*>& start_ffs = {});
} // namespace hawkeye

template<>
std::map<hawkeye::DetectionConfiguration::Control, std::string> EnumStrings<hawkeye::DetectionConfiguration::Control>::data;

template<>
std::map<hawkeye::DetectionConfiguration::Components, std::string> EnumStrings<hawkeye::DetectionConfiguration::Components>::data;
} // namespace hal
Loading

0 comments on commit a3c102e

Please sign in to comment.