File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -27,12 +27,11 @@ target_sources(cut
2727target_link_libraries (cut
2828 PUBLIC
2929 rsz_lib
30- libabc
30+ ${ABC_LIBRARY}
3131 PRIVATE
3232 odb
3333 dbSta
3434 OpenSTA
3535 dbSta_lib
3636 utl_lib
37- ${ABC_LIBRARY}
3837 )
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ target_link_libraries(CutGTests
88 GTest::gmock
99 dbSta_lib
1010 utl_lib
11- libabc
11+ ${ABC_LIBRARY}
1212 cut
1313 tst
1414 ${TCL_LIBRARY}
Original file line number Diff line number Diff line change @@ -38,7 +38,8 @@ class AnnealingStrategy : public ResynthesisStrategy
3838 initial_ops_(initial_ops)
3939 {
4040 if (seed) {
41- random_ = decltype (random_){*seed};
41+ const uint32_t seed_32 = *seed;
42+ random_ = decltype (random_){seed_32};
4243 }
4344 }
4445 void OptimizeDesign (sta::dbSta* sta,
You can’t perform that action at this time.
0 commit comments