diff options
author | David Shah <dave@ds0.me> | 2019-07-03 12:39:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-03 12:39:38 +0100 |
commit | 8f2813279c5888e655ee6f50f198cf8cb11b0b50 (patch) | |
tree | 0aac9464d3ea87d37cd0689903ba08094b7c0984 /common/placer_heap.h | |
parent | ff958830d1097b9bfa3c3b34094e671741ef563d (diff) | |
parent | e27dc41a7646fd3377d2400059c916fbcc35119c (diff) | |
download | nextpnr-8f2813279c5888e655ee6f50f198cf8cb11b0b50.tar.gz nextpnr-8f2813279c5888e655ee6f50f198cf8cb11b0b50.tar.bz2 nextpnr-8f2813279c5888e655ee6f50f198cf8cb11b0b50.zip |
Merge pull request #284 from YosysHQ/json_write
Initial support for writing to json files from nextpnr.
Diffstat (limited to 'common/placer_heap.h')
-rw-r--r-- | common/placer_heap.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/common/placer_heap.h b/common/placer_heap.h index 841aa0d9..a018aef8 100644 --- a/common/placer_heap.h +++ b/common/placer_heap.h @@ -26,18 +26,19 @@ #ifndef PLACER_HEAP_H #define PLACER_HEAP_H +#include "log.h" #include "nextpnr.h" -#include "settings.h" NEXTPNR_NAMESPACE_BEGIN -struct PlacerHeapCfg : public Settings +struct PlacerHeapCfg { PlacerHeapCfg(Context *ctx); float alpha; float criticalityExponent; float timingWeight; + bool timing_driven; std::unordered_set<IdString> ioBufTypes; }; |