// Created on: 1991-06-10 // 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. #include #include void Expr_SingleRelation::SetFirstMember (const Handle(Expr_GeneralExpression)& exp) { myFirstMember = exp; } void Expr_SingleRelation::SetSecondMember (const Handle(Expr_GeneralExpression)& exp) { mySecondMember = exp; } Handle(Expr_GeneralExpression) Expr_SingleRelation::FirstMember () const { return myFirstMember; } Handle(Expr_GeneralExpression) Expr_SingleRelation::SecondMember () const { return mySecondMember; } Standard_Boolean Expr_SingleRelation::IsLinear () const { if (!myFirstMember->IsLinear()) { return Standard_False; } if (!mySecondMember->IsLinear()) { return Standard_False; } return Standard_True; } Standard_Boolean Expr_SingleRelation::Contains(const Handle(Expr_GeneralExpression)& exp) const { if (myFirstMember == exp) { return Standard_True; } if (mySecondMember == exp) { return Standard_True; } if (myFirstMember->Contains(exp)) { return Standard_True; } return mySecondMember->Contains(exp); } void Expr_SingleRelation::Replace(const Handle(Expr_NamedUnknown)& var, const Handle(Expr_GeneralExpression)& with) { if (myFirstMember == var) { SetFirstMember(with); } else { if (myFirstMember->Contains(var)) { myFirstMember->Replace(var,with); } } if (mySecondMember == var) { SetSecondMember(with); } else { if (mySecondMember->Contains(var)) { mySecondMember->Replace(var,with); } } } Standard_Integer Expr_SingleRelation::NbOfSubRelations () const { return 0; } Handle(Expr_GeneralRelation) Expr_SingleRelation::SubRelation (const Standard_Integer ) const { Standard_OutOfRange::Raise(); Handle(Expr_GeneralRelation) bid; return bid; } Standard_Integer Expr_SingleRelation::NbOfSingleRelations() const { return 1; }