comparison src/share/vm/gc_implementation/shared/gcUtil.hpp @ 14909:4ca6dc0799b6

Backout jdk9 merge
author Gilles Duboscq <duboscq@ssw.jku.at>
date Tue, 01 Apr 2014 13:57:07 +0200
parents 63a4eb8bcd23
children
comparison
equal deleted inserted replaced
14908:8db6e76cb658 14909:4ca6dc0799b6
208 LinearLeastSquareFit(unsigned weight); 208 LinearLeastSquareFit(unsigned weight);
209 void update(double x, double y); 209 void update(double x, double y);
210 double y(double x); 210 double y(double x);
211 double slope() { return _slope; } 211 double slope() { return _slope; }
212 // Methods to decide if a change in the dependent variable will 212 // Methods to decide if a change in the dependent variable will
213 // achieve a desired goal. Note that these methods are not 213 // achive a desired goal. Note that these methods are not
214 // complementary and both are needed. 214 // complementary and both are needed.
215 bool decrement_will_decrease(); 215 bool decrement_will_decrease();
216 bool increment_will_decrease(); 216 bool increment_will_decrease();
217 }; 217 };
218 218