NotEqualOperation.prototype.evaluate = function(c) {
    return this.lhs.evaluate(c).notequal(this.rhs.evaluate(c));
};