1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-05-11 10:44:53 +03:00
occt/src/Expr/Expr_LessThanOrEqual.cxx
bugmster 973c2be1e1 0024428: Implementation of LGPL license
The copying permission statements at the beginning of source files updated to refer to LGPL.
Copyright dates extended till 2014 in advance.
2013-12-17 12:42:41 +04:00

68 lines
2.3 KiB
C++

// Created on: 1991-06-13
// 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 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_LessThanOrEqual.ixx>
#include <Expr_NumericValue.hxx>
#include <Expr.hxx>
Expr_LessThanOrEqual::Expr_LessThanOrEqual (const Handle(Expr_GeneralExpression)& exp1, const Handle(Expr_GeneralExpression)& exp2)
{
SetFirstMember(exp1);
SetSecondMember(exp2);
}
Standard_Boolean Expr_LessThanOrEqual::IsSatisfied () const
{
Handle(Expr_GeneralExpression) fm = FirstMember();
Handle(Expr_GeneralExpression) sm = SecondMember();
fm = fm->Simplified();
sm = sm->Simplified();
if (fm->IsKind(STANDARD_TYPE(Expr_NumericValue))) {
if (sm->IsKind(STANDARD_TYPE(Expr_NumericValue))) {
Handle(Expr_NumericValue) nfm = Handle(Expr_NumericValue)::DownCast(fm);
Handle(Expr_NumericValue) nsm = Handle(Expr_NumericValue)::DownCast(sm);
return (nfm->GetValue() <= nsm->GetValue());
}
}
return Standard_False;
}
Handle(Expr_GeneralRelation) Expr_LessThanOrEqual::Simplified () const
{
Handle(Expr_GeneralExpression) fm = FirstMember();
Handle(Expr_GeneralExpression) sm = SecondMember();
return new Expr_LessThanOrEqual(fm->Simplified(),sm->Simplified());
}
void Expr_LessThanOrEqual::Simplify ()
{
Handle(Expr_GeneralExpression) fm = FirstMember();
Handle(Expr_GeneralExpression) sm = SecondMember();
SetFirstMember(fm->Simplified());
SetSecondMember(sm->Simplified());
}
Handle(Expr_GeneralRelation) Expr_LessThanOrEqual::Copy () const
{
return new Expr_LessThanOrEqual(Expr::CopyShare(FirstMember()),
Expr::CopyShare(SecondMember()));
}
TCollection_AsciiString Expr_LessThanOrEqual::String() const
{
return FirstMember()->String() + " <= " + SecondMember()->String();
}