예제 #1
0
파일: Ratio.php 프로젝트: krixon/math
 /**
  * Determines if the Fraction is simplified.
  *
  * @return bool
  */
 public function isSimplified() : bool
 {
     return $this->greatestCommonDivisor()->equals(Decimal::one());
 }