spec/lib/algebra/operator/parts/formula_spec.rb in dydx-0.0.5 vs spec/lib/algebra/operator/parts/formula_spec.rb in dydx-0.0.6

- old
+ new

@@ -1,28 +1,55 @@ require 'spec_helper' describe Dydx::Algebra::Operator::Parts::Formula do it{ expect(((:a * :b) + (:a * :c)).to_s).to eq('( a * ( b + c ) )') } - it{ expect(((:b * :a) + (:c * :a)).to_s).to eq('( ( b + c ) * a )') } + it{ expect(((:a * :b) + (:c * :a)).to_s).to eq('( a * ( b + c ) )') } + it{ expect(((:b * :a) + (:c * :a)).to_s).to eq('( a * ( b + c ) )') } + it{ expect(((:b * :a) + (:a * :c)).to_s).to eq('( a * ( b + c ) )') } it{ expect(((:a * :b) - (:a * :c)).to_s).to eq('( a * ( b - c ) )') } - it{ expect(((:b * :a) - (:c * :a)).to_s).to eq('( ( b - c ) * a )') } + it{ expect(((:a * :b) - (:c * :a)).to_s).to eq('( a * ( b - c ) )') } + it{ expect(((:b * :a) - (:c * :a)).to_s).to eq('( a * ( b - c ) )') } + it{ expect(((:b * :a) - (:a * :c)).to_s).to eq('( a * ( b - c ) )') } - it{ expect(((:x ^ 3) * (:x ^ 2)).to_s).to eq('( x ^ 5 )') } - it{ expect(((:x ^ 3) / (:x ^ 2)).to_s).to eq('x') } - it{ expect(((:x ^ :n) * (:y ^ :n)).to_s).to eq('( ( x * y ) ^ n )') } - it{ expect(((:x ^ :n) / (:y ^ :n)).to_s).to eq('( ( x / y ) ^ n )') } + it{ expect(((:a ^ :b) * (:a ^ :c)).to_s).to eq('( a ^ ( b + c ) )') } + it{ expect(((:a ^ :b) * (:c ^ :a)).to_s).to eq('( ( a ^ b ) * ( c ^ a ) )') } + it{ expect(((:b ^ :a) * (:c ^ :a)).to_s).to eq('( ( b * c ) ^ a )') } + it{ expect(((:b ^ :a) * (:a ^ :c)).to_s).to eq('( ( b ^ a ) * ( a ^ c ) )') } + it{ expect(((:a ^ :b) / (:a ^ :c)).to_s).to eq('( a ^ ( b - c ) )') } + it{ expect(((:a ^ :b) / (:c ^ :a)).to_s).to eq('( ( a ^ b ) / ( c ^ a ) )') } + it{ expect(((:b ^ :a) / (:c ^ :a)).to_s).to eq('( ( b / c ) ^ a )') } + it{ expect(((:b ^ :a) / (:a ^ :c)).to_s).to eq('( ( b ^ a ) / ( a ^ c ) )') } it{ expect(((:x - 2) + 2).to_s).to eq('x') } it{ expect(((:x + 2) - 2).to_s).to eq('x') } it{ expect(((:x * 2) / 2).to_s).to eq('x') } it{ expect(((:x / 2) * 2).to_s).to eq('x') } + it{ expect((2 + (:x - 2)).to_s).to eq('x') } + it{ expect((2 - (:x + 2)).to_s).to eq('( - x )') } + it{ expect((2 * (:x / 2)).to_s).to eq('x') } + it{ expect((2 / (:x * 2)).to_s).to eq('( 1 / x )') } + it{ expect(((:x + :y) + :y).to_s).to eq('( ( 2 * y ) + x )') } + it{ expect(((:y + :x) + :y).to_s).to eq('( ( 2 * y ) + x )') } it{ expect(((:x - :y) - :y).to_s).to eq('( x - ( 2 * y ) )') } it{ expect(((:y - :x) - :y).to_s).to eq('( - x )') } + it{ expect(((:y * :x) * :y).to_s).to eq('( ( y ^ 2 ) * x )') } it{ expect(((:x * :y) * :y).to_s).to eq('( ( y ^ 2 ) * x )') } it{ expect(((:x / :y) / :y).to_s).to eq('( x / ( y ^ 2 ) )') } it{ expect(((:y / :x) / :y).to_s).to eq('( 1 / x )') } + it{ expect((:y + (:x + :y)).to_s).to eq('( ( 2 * y ) + x )') } + it{ expect((:y + (:y + :x)).to_s).to eq('( ( 2 * y ) + x )') } + it{ expect((:y - (:x - :y)).to_s).to eq('( ( 2 * y ) - x )') } + it{ expect((:y - (:y - :x)).to_s).to eq('x') } + it{ expect((:y * (:y * :x)).to_s).to eq('( ( y ^ 2 ) * x )') } + it{ expect((:y * (:x * :y)).to_s).to eq('( ( y ^ 2 ) * x )') } + it{ expect((:y - (:x - :y)).to_s).to eq('( ( 2 * y ) - x )') } + it{ expect((:y - (:y - :x)).to_s).to eq('x') } + it{ expect(((:x * 2) ^ 2).to_s).to eq('( ( x ^ 2 ) * 4 )') } it{ expect(((:x / 2) ^ 2).to_s).to eq('( ( x ^ 2 ) / 4 )') } + + it{ expect((2 ^ (:x * 2)).to_s).to eq('( ( x ^ 2 ) * 4 )') } + it{ expect((2 ^ (:x / 2)).to_s).to eq('( ( x ^ 2 ) / 4 )') } end \ No newline at end of file