mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-05-01 10:26:12 +03:00
Macro NO_CXX_EXCEPTION was removed from code. Method Raise() was replaced by explicit throw statement. Method Standard_Failure::Caught() was replaced by normal C++mechanism of exception transfer. Method Standard_Failure::Caught() is deprecated now. Eliminated empty constructors. Updated samples. Eliminate empty method ChangeValue from NCollection_Map class. Removed not operable methods from NCollection classes.
106 lines
2.7 KiB
C++
106 lines
2.7 KiB
C++
// 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 <Expr_GeneralExpression.hxx>
|
|
#include <Expr_GeneralRelation.hxx>
|
|
#include <Expr_NamedUnknown.hxx>
|
|
#include <Expr_SingleRelation.hxx>
|
|
#include <Standard_OutOfRange.hxx>
|
|
#include <Standard_Type.hxx>
|
|
|
|
IMPLEMENT_STANDARD_RTTIEXT(Expr_SingleRelation,Expr_GeneralRelation)
|
|
|
|
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
|
|
{
|
|
throw Standard_OutOfRange();
|
|
}
|
|
|
|
Standard_Integer Expr_SingleRelation::NbOfSingleRelations() const
|
|
{
|
|
return 1;
|
|
}
|