We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2b8f734 + 137297a commit c134670Copy full SHA for c134670
3 files changed
src/cut/src/CMakeLists.txt
@@ -27,12 +27,11 @@ target_sources(cut
27
target_link_libraries(cut
28
PUBLIC
29
rsz_lib
30
- libabc
+ ${ABC_LIBRARY}
31
PRIVATE
32
odb
33
dbSta
34
OpenSTA
35
dbSta_lib
36
utl_lib
37
- ${ABC_LIBRARY}
38
)
src/cut/test/cpp/CMakeLists.txt
@@ -8,7 +8,7 @@ target_link_libraries(CutGTests
8
GTest::gmock
9
10
11
12
cut
13
tst
14
${TCL_LIBRARY}
src/rmp/src/annealing_strategy.h
@@ -38,7 +38,8 @@ class AnnealingStrategy : public ResynthesisStrategy
initial_ops_(initial_ops)
39
{
40
if (seed) {
41
- random_ = decltype(random_){*seed};
+ const uint32_t seed_32 = *seed;
42
+ random_ = decltype(random_){seed_32};
43
}
44
45
void OptimizeDesign(sta::dbSta* sta,
0 commit comments