Skip to content

Commit

Permalink
Invert initaliser after having inverted logic.
Browse files Browse the repository at this point in the history
  • Loading branch information
adavidzh committed Nov 20, 2014
1 parent 99e33a4 commit 5062fa5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.cc
Original file line number Diff line number Diff line change
Expand Up @@ -722,7 +722,7 @@ bool utils::isParameterAtBoundary( const RooRealVar &param ){
bool utils::anyParameterAtBoundaries( const RooArgSet &params, int verbosity ){

static std::unordered_map<std::string, unsigned char> timesFoundAtBoundary;
bool isAnyBad = true;
bool isAnyBad = false;

RooLinkedListIter iter = params.iterator(); int i = 0;
for (RooRealVar *a = (RooRealVar *) iter.Next(); a != 0; a = (RooRealVar *) iter.Next(), ++i) {
Expand Down

0 comments on commit 5062fa5

Please sign in to comment.