Skip to content
This repository has been archived by the owner on Dec 14, 2017. It is now read-only.

Commit

Permalink
Fixed bug with TTSE range checking
Browse files Browse the repository at this point in the history
Signed-off-by: Ian Bell <[email protected]>
  • Loading branch information
ibell committed Dec 6, 2013
1 parent 2c7ac17 commit 14aaf92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CoolProp/TTSE.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2133,7 +2133,7 @@ bool TTSESinglePhaseTableClass::within_range_one_other_input(long iInput1, doubl
return false;
}
}
else if (iOther = iD)
else if (iOther == iD)
{
double right = this->rho[Nh-1][j], left = this->rho[0][j];

Expand Down

0 comments on commit 14aaf92

Please sign in to comment.