Exemplo n.º 1
0
        /// <summary>
        ///
        /// </summary>
        /// <param name="other"></param>
        /// <returns></returns>
        public bool IsEquivalentTo(AlgebraExpression other)
        {
            if (this.Equals(other))
            {
                return(true);
            }

            return(this.Simplify().Equals(other.Simplify()));
        }