// Created on: 1991-01-14 // Created by: Arnaud BOUZY // Copyright (c) 1991-1999 Matra Datavision // Copyright (c) 1999-2014 OPEN CASCADE SAS // // This file is part of Open CASCADE Technology software library. // // This library is free software; you can redistribute it and/or modify it under // the terms of the GNU Lesser General Public License version 2.1 as published // by the Free Software Foundation, with special exception defined in the file // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT // distribution for complete text of the license and disclaimer of any warranty. // // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. #ifndef _Expr_Difference_HeaderFile #define _Expr_Difference_HeaderFile #include #include #include #include class Expr_GeneralExpression; class Expr_NamedUnknown; class TCollection_AsciiString; class Expr_Difference : public Expr_BinaryExpression { public: //! Creates the difference - . Standard_EXPORT Expr_Difference(const occ::handle& exp1, const occ::handle& exp2); //! Returns a GeneralExpression after a simplification //! of the arguments of . Standard_EXPORT occ::handle ShallowSimplified() const override; //! Returns a copy of having the same unknowns and functions. Standard_EXPORT occ::handle Copy() const override; //! Tests if and define the same expression. //! This method does not include any simplification before //! testing. Standard_EXPORT bool IsIdentical(const occ::handle& Other) const override; Standard_EXPORT bool IsLinear() const override; //! Returns the derivative on unknown of Standard_EXPORT occ::handle Derivative( const occ::handle& X) const override; //! Returns the -th derivative on unknown of . //! Raises OutOfRange if <= 0 Standard_EXPORT occ::handle NDerivative( const occ::handle& X, const int N) const override; //! Returns the value of (as a Real) by //! replacement of by . //! Raises NotEvaluable if contains NamedUnknown not //! in or NumericError if result cannot be computed. Standard_EXPORT double Evaluate(const NCollection_Array1>& vars, const NCollection_Array1& vals) const override; //! returns a string representing in a readable way. Standard_EXPORT TCollection_AsciiString String() const override; DEFINE_STANDARD_RTTIEXT(Expr_Difference, Expr_BinaryExpression) }; #endif // _Expr_Difference_HeaderFile