1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-21 10:13:43 +03:00
occt/src/Expr/Expr_SystemRelation.cxx
abv d5f74e42d6 0024624: Lost word in license statement in source files
License statement text corrected; compiler warnings caused by Bison 2.41 disabled for MSVC; a few other compiler warnings on 54-bit Windows eliminated by appropriate type cast
Wrong license statements corrected in several files.
Copyright and license statements added in XSD and GLSL files.
Copyright year updated in some files.
Obsolete documentation files removed from DrawResources.
2014-02-20 16:15:17 +04:00

164 lines
4.5 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 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_SystemRelation.ixx>
#include <Standard_NoSuchObject.hxx>
#include <Standard_OutOfRange.hxx>
#include <Standard_DimensionMismatch.hxx>
Expr_SystemRelation::Expr_SystemRelation (const Handle(Expr_GeneralRelation)& relation)
{
myRelations.Append(relation);
}
void Expr_SystemRelation::Add (const Handle(Expr_GeneralRelation)& relation)
{
myRelations.Append(relation);
}
void Expr_SystemRelation::Remove (const Handle(Expr_GeneralRelation)& relation)
{
Standard_Integer position = 0;
Standard_Boolean alreadyHere = Standard_False;
for (Standard_Integer i = 1; i <= myRelations.Length() && !alreadyHere; i++) {
if (myRelations.Value(i) == relation) {
alreadyHere = Standard_True;
position = i;
}
}
if (alreadyHere) {
Standard_NoSuchObject::Raise();
}
if (myRelations.Length() <= 1) {
Standard_DimensionMismatch::Raise();
}
myRelations.Remove(position);
}
Standard_Boolean Expr_SystemRelation::IsLinear () const
{
Standard_Integer len = myRelations.Length();
for (Standard_Integer i = 1; i<= len; i++) {
if (!myRelations(i)->IsLinear()) {
return Standard_False;
}
}
return Standard_True;
}
Standard_Boolean Expr_SystemRelation::Contains(const Handle(Expr_GeneralExpression)& exp) const
{
for (Standard_Integer i=1; i<= myRelations.Length(); i++) {
if (myRelations(i)->Contains(exp)) {
return Standard_True;
}
}
return Standard_False;
}
void Expr_SystemRelation::Replace(const Handle(Expr_NamedUnknown)& var, const Handle(Expr_GeneralExpression)& with)
{
for (Standard_Integer i=1; i<= myRelations.Length(); i++) {
myRelations(i)->Replace(var,with);
}
}
Standard_Integer Expr_SystemRelation::NbOfSubRelations () const
{
return myRelations.Length();
}
Handle(Expr_GeneralRelation) Expr_SystemRelation::SubRelation (const Standard_Integer index) const
{
return myRelations(index);
}
Standard_Boolean Expr_SystemRelation::IsSatisfied () const
{
Standard_Integer len = myRelations.Length();
for (Standard_Integer i = 1; i<= len; i++) {
if (!myRelations(i)->IsSatisfied()) {
return Standard_False;
}
}
return Standard_True;
}
Handle(Expr_GeneralRelation) Expr_SystemRelation::Simplified () const
{
Standard_Integer len = myRelations.Length();
Handle(Expr_GeneralRelation) rel;
rel = myRelations(1);
Handle(Expr_SystemRelation) result = new Expr_SystemRelation(rel->Simplified());
for (Standard_Integer i = 2; i<= len; i++) {
rel = myRelations(i);
rel = rel->Simplified();
result->Add(rel);
}
return result;
}
void Expr_SystemRelation::Simplify ()
{
Standard_Integer len = myRelations.Length();
Handle(Expr_GeneralRelation) rel;
for (Standard_Integer i = 1; i<= len; i++) {
rel = myRelations(i);
rel->Simplify();
}
}
Handle(Expr_GeneralRelation) Expr_SystemRelation::Copy () const
{
Handle(Expr_SystemRelation) cop = new Expr_SystemRelation(myRelations(1)->Copy());
Standard_Integer len = myRelations.Length();
for (Standard_Integer i = 2; i<= len; i++) {
cop->Add(myRelations(i)->Copy());
}
return cop;
}
Standard_Integer Expr_SystemRelation::NbOfSingleRelations() const
{
Standard_Integer nbsing = 0;
Standard_Integer nbrel = myRelations.Length();
Handle(Expr_GeneralRelation) subrel;
for (Standard_Integer i = 1; i<= nbrel ; i++) {
subrel = myRelations(i);
nbsing = nbsing + subrel->NbOfSingleRelations();
}
return nbsing;
}
TCollection_AsciiString Expr_SystemRelation::String() const
{
Standard_Integer nbrel = myRelations.Length();
Handle(Expr_GeneralRelation) subrel;
TCollection_AsciiString res;
for (Standard_Integer i = 1; i<= nbrel ; i++) {
res += myRelations(i)->String();
if (i != nbrel) {
res += TCollection_AsciiString('\n');
}
}
return res;
}