12#ifndef ARCANE_EXPR_BINARYEXPRESSIONIMPL_H
13#define ARCANE_EXPR_BINARYEXPRESSIONIMPL_H
17#include "arcane/expr/ExpressionImpl.h"
18#include "arcane/expr/Expression.h"
19#include "arcane/expr/ExpressionResult.h"
20#include "arcane/expr/BadOperandException.h"
38class BinaryExpressionImpl
39:
public ExpressionImpl
64 eOperationType operation);
71 String operationName()
const {
return operationName(m_operation); }
72 static String operationName(eOperationType type);
77 eOperationType m_operation;
110 if (a->type() != b->type())
114 if (size != a->size() || size != b->size())
118 res->allocate(a->type());
122 res->
data()->value(res_val);
129 evaluate(res_val, a_val, b_val);
136#define DEFAULT_BINARY_OP(classname,expression) \
138class classname : public DefaultBinaryOperator<T> \
141 virtual void evaluate(ExpressionResult* res, \
144 { DefaultBinaryOperator<T>::evaluate(res,a,b); } \
145 virtual void evaluate(ArrayView<T> res, \
149 Integer size=res.size(); \
150 for (Integer i=0 ; i<size ; ++i) \
158DEFAULT_BINARY_OP(AddOperator,res[i]=a[i]+b[i])
159DEFAULT_BINARY_OP(SubstractOperator,res[i]=a[i]-b[i])
160DEFAULT_BINARY_OP(MultiplyOperator,res[i]=a[i]*b[i])
161DEFAULT_BINARY_OP(DivideOperator,res[i]=a[i]/b[i])
162DEFAULT_BINARY_OP(MinimumOperator,(a[i]<b[i])?res[i]=a[i]:res[i]=b[i])
163DEFAULT_BINARY_OP(MaximumOperator,(a[i]<b[i])?res[i]=b[i]:res[i]=a[i])
164DEFAULT_BINARY_OP(PowOperator,res[i]=pow(a[i],b[i]))
170class BoolBinaryOperator
183 if (a->type() != b->type())
187 if (size != a->size() || size != b->size())
191 res->allocate(ArrayVariant::TBool);
195 res->
data()->value(res_val);
202 evaluate(res_val, a_val, b_val);
209#define BOOL_BINARY_OP(classname,expression) \
211class classname : public BoolBinaryOperator<T> \
214 virtual void evaluate(ExpressionResult* res, \
217 { BoolBinaryOperator<T>::evaluate(res,a,b); }\
218 virtual void evaluate(ArrayView<bool> res, \
222 Integer size=res.size(); \
223 for (Integer i=0 ; i<size ; ++i) \
231BOOL_BINARY_OP(EQOperator,res[i]=(a[i]==b[i]))
232BOOL_BINARY_OP(LTOperator,res[i]=(a[i]<b[i]))
233BOOL_BINARY_OP(GTOperator,res[i]=(a[i]>b[i]))
234BOOL_BINARY_OP(LOETOperator,res[i]=(a[i]<=b[i]))
235BOOL_BINARY_OP(GOETOperator,res[i]=(a[i]>=b[i]))
236BOOL_BINARY_OP(AndOperator,res[i]=(a[i]&&b[i]))
237BOOL_BINARY_OP(OrOperator,res[i]=(a[i]||b[i]))
Type de base polymorphe pour les tableaux (dimension 1).
Vue modifiable d'un tableau d'un type T.
constexpr const_pointer data() const noexcept
Pointeur sur le début de la vue.
Exception sur les opérandes des opérations des expressions.
virtual Integer vectorSize() const
Nombre d'éléments du vecteur.
Operateur binaire generique pour les expressions.
Type de base polymorphe d'une expression.
Interface pour les différentes implémentations d'une expression.
Chaîne de caractères unicode.
Int32 Integer
Type représentant un entier.
ConstArrayView< Integer > IntegerConstArrayView
Equivalent C d'un tableau à une dimension d'entiers.