Skip to content

Commit

Permalink
trailing spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
sahrkm committed Jun 15, 2024
1 parent ced5dc7 commit 6601e4e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/lib/dglib/include/dglib/DgIDGGutil.h
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ class DgQuadEdgeCells {
DgQuadEdgeCells (int quadNumIn, bool isType0In, int loneVertIn,
int upQuadIn, int downQuadIn, int rightQuadIn, int leftQuadIn)
: isType0_ (isType0In), quadNum_ (quadNumIn), loneVert_ (loneVertIn),
upQuad_ (upQuadIn), downQuad_ (downQuadIn), rightQuad_ (rightQuadIn),
upQuad_ (upQuadIn), downQuad_ (downQuadIn), rightQuad_ (rightQuadIn),
leftQuad_ (leftQuadIn) { }

bool isType0 (void) const { return isType0_; }
Expand Down
4 changes: 2 additions & 2 deletions src/lib/dglib/lib/DgIDGGutil.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ dgcout << " ---> B. " << coord << endl;
long long int maxTopOverageI = (IDGG().aperture() == 7 && IDGG().isClassI()) ? topEdgeI + 2 : topEdgeI;
long long int maxTopOverageJ = (IDGG().aperture() == 7 && IDGG().isClassI()) ? topEdgeJ + 2 : topEdgeJ;
*/

long long int maxTopOverageI = (IDGG().aperture() == 7) ? topEdgeI + 2 : topEdgeI;
long long int maxTopOverageJ = (IDGG().aperture() == 7) ? topEdgeJ + 2 : topEdgeJ;

Expand Down Expand Up @@ -412,7 +412,7 @@ dgcout << " ---> C. " << coord << endl;
//if (numOver) {
if (overI || overJ) {
const DgQuadEdgeCells& ec = IDGG().edgeTable(quadNum);

// special case first
if (overI && overJ) {
// must be upper right corner
Expand Down
4 changes: 2 additions & 2 deletions src/lib/dglib/lib/DgZ3RF.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ const DgZ3Coord DgZ3Coord::undefDgZ3Coord(0xffffffffffffffff);

////////////////////////////////////////////////////////////////////////////////
DgZ3RF::DgZ3RF (DgRFNetwork& networkIn, const std::string& nameIn, int resIn)
: DgRF<DgZ3Coord, long long int>(networkIn, nameIn), res_ (resIn)
: DgRF<DgZ3Coord, long long int>(networkIn, nameIn), res_ (resIn)
{
}

Expand Down Expand Up @@ -158,7 +158,7 @@ DgZ3StringtoZ3Converter::DgZ3StringtoZ3Converter
DgZ3Coord
DgZ3StringtoZ3Converter::convertTypedAddress (const DgZ3StringCoord& addIn) const
{
if (res_ > MAX_Z3_RES) {
if (res_ > MAX_Z3_RES) {
report("DgZ3StringtoZ3Converter::DgZ3StringtoZ3Converter(): "
" input resolution exceeds max Z3 resolution of 30", DgBase::Fatal);
}
Expand Down

0 comments on commit 6601e4e

Please sign in to comment.