aboutsummaryrefslogtreecommitdiffstats
path: root/common/nextpnr.h
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2018-06-20 12:50:38 +0200
committerClifford Wolf <clifford@clifford.at>2018-06-20 12:50:38 +0200
commitc3837027b22b67a5079d84419bae20c4d545430b (patch)
tree49196c574fdda739506d7c78df6a96960620590f /common/nextpnr.h
parenta06d2aeb4da0c51fb50d8283367836e6dbf91b4d (diff)
downloadnextpnr-c3837027b22b67a5079d84419bae20c4d545430b.tar.gz
nextpnr-c3837027b22b67a5079d84419bae20c4d545430b.tar.bz2
nextpnr-c3837027b22b67a5079d84419bae20c4d545430b.zip
Add better iCE40 delay estimates
Signed-off-by: Clifford Wolf <clifford@clifford.at>
Diffstat (limited to 'common/nextpnr.h')
-rw-r--r--common/nextpnr.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/common/nextpnr.h b/common/nextpnr.h
index c59b401e..5ccbf057 100644
--- a/common/nextpnr.h
+++ b/common/nextpnr.h
@@ -17,13 +17,13 @@
*
*/
+#include <algorithm>
#include <assert.h>
#include <stdint.h>
#include <string>
#include <unordered_map>
#include <unordered_set>
#include <vector>
-#include <algorithm>
#ifndef NEXTPNR_H
#define NEXTPNR_H
@@ -196,12 +196,12 @@ struct CellInfo;
enum PlaceStrength
{
- STRENGTH_NONE = 0,
- STRENGTH_WEAK = 1,
+ STRENGTH_NONE = 0,
+ STRENGTH_WEAK = 1,
STRENGTH_STRONG = 2,
- STRENGTH_FIXED = 3,
+ STRENGTH_FIXED = 3,
STRENGTH_LOCKED = 4,
- STRENGTH_USER = 5
+ STRENGTH_USER = 5
};
struct PortRef