Quinn Davis
Quinn Davis
@Average-user is that something we could test for? I'm not sure if it's possible, but it would be useful to look into. with regards to the actual content of the...
Well I mean more that, with a correct exponent function, X should equal 1 (ignoring floating point), but these tests assert that X doesn't equal 1
Let's take the first test, for example, `exponent((0,pi), (X,Y)), X \=-1, Y \= 0.` This is the result of evaluating just `exponent((0,pi), (X,Y))`  Because of floating point arithmetic, Y...
Could you create a `floatEqual` rule that looks something like ``` floatEqual(X, Y, Precision):- X < Y + Precision, X > Y + Precision. ``` so the tests are easy...
Certain exercises that require string computation seem doable, such as `anagram` or potentially `bob`. In regards to dates, assembly has 4 input registers-- month, day, and year could be passed...