sallam-ahmed / Polynomial-Calculator

Data Structure 2015 Course Project
Apache License 2.0
0 stars 3 forks source link

Multiplication Bug #8

Closed sallam-ahmed closed 8 years ago

sallam-ahmed commented 8 years ago

Assume multiplying (x+4) and (x+4) the result would be x^2 + 8x + 16 Current output : 8x+ 17

Function calling

polynomial1 = GetPolynomial(flowPolynomial1.Controls);
polynomial2 = GetPolynomial(flowPolynomial2.Controls);
resultPolynomial = polynomial1 * polynomial2;

Polynomials are stored successfully and result polynomial isn't calculated correctly

khaledkee commented 8 years ago

That's weird. I used TestApp class (the same code on the repo) and it outputs the right answer. NoBug

sallam-ahmed commented 8 years ago

image

I'm having that result

sallam-ahmed commented 8 years ago

Rebuilt and it worked,Binary files weren't updated