Skip to content

Commit

Permalink
Merge branch 'parallaxsw:master' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
akashlevy authored Nov 14, 2024
2 parents cdf0698 + e56d0e2 commit d8d18e3
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion dcalc/FindRoot.cc
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

#include "FindRoot.hh"

#include <algorithm> // abs
#include <cmath> // abs

namespace sta {

Expand Down
Binary file modified doc/OpenSTA.odt
Binary file not shown.
Binary file modified doc/OpenSTA.pdf
Binary file not shown.
8 changes: 3 additions & 5 deletions search/Tag.cc
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,7 @@ tagStateEqual(ExceptionStateSet *states1,
return false;
}

// Match false, loop exception states only for crpr min/max paths.
// Match loop exception states only for crpr min/max paths.
static bool
tagStateEqualCrpr(const Tag *tag1,
const Tag *tag2)
Expand All @@ -622,8 +622,7 @@ tagStateEqualCrpr(const Tag *tag1,
while (state_iter1.hasNext()) {
state1 = state_iter1.next();
ExceptionPath *exception1 = state1->exception();
if (exception1->isFalse()
|| exception1->isLoop())
if (exception1->isLoop())
break;
else
state1 = nullptr;
Expand All @@ -632,8 +631,7 @@ tagStateEqualCrpr(const Tag *tag1,
while (state_iter2.hasNext()) {
state2 = state_iter2.next();
ExceptionPath *exception2 = state2->exception();
if (exception2->isFalse()
|| exception2->isLoop())
if (exception2->isLoop())
break;
else
state2 = nullptr;
Expand Down
1 change: 1 addition & 0 deletions util/StringUtil.cc
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
#include <limits>
#include <cctype>
#include <cstdio>
#include <cstdlib> // exit
#include <array>
#include <algorithm>

Expand Down

0 comments on commit d8d18e3

Please sign in to comment.