示例#1
0
 /**
  * Returns the probability of this cross-link to be observed with its Euclidean distance in real
  * experiments.
  *
  * @return float number representing the probability.
  */
 public final float getEuclideanDistanceProbability() {
   return Float.parseFloat(
       xwalk.constants.Constants.PROBABILITY_DEC_FORMAT.format(this.eucDistProbability));
 }
示例#2
0
 /**
  * Returns the probability of this cross-link to be observed with its SAS distance in real
  * experiments.
  *
  * @return float number representing the probability.
  */
 public final float getSolventPathDistanceProbability() {
   return Float.parseFloat(
       xwalk.constants.Constants.PROBABILITY_DEC_FORMAT.format(this.sasdDistProbability));
 }