fix typo: 'devide' -> 'divide'
This commit is contained in:
parent
c170647969
commit
b91c9feca9
@ -148,7 +148,7 @@ public:
|
||||
|
||||
// a/b with 'a' being a scalar and 'b' an Evaluation
|
||||
template <class RhsValueType>
|
||||
static inline Eval devide(const RhsValueType& a, const Eval& b )
|
||||
static inline Eval divide(const RhsValueType& a, const Eval& b )
|
||||
{
|
||||
Eval result;
|
||||
|
||||
@ -506,7 +506,7 @@ Evaluation<ValueType, numVars> operator+(const RhsValueType& a, const Evaluation
|
||||
template <class RhsValueType, class ValueType, int numVars>
|
||||
Evaluation<ValueType, numVars> operator-(const RhsValueType& a, const Evaluation<ValueType, numVars>& b)
|
||||
{
|
||||
Evaluation<ValueType, numVars> result( a );
|
||||
Evaluation<ValueType, numVars> result(a);
|
||||
result -= b;
|
||||
return result;
|
||||
}
|
||||
@ -516,13 +516,13 @@ Evaluation<ValueType, numVars> operator/(const RhsValueType& a, const Evaluation
|
||||
{
|
||||
typedef EvaluationOps<ValueType, numVars> Ops;
|
||||
|
||||
return Ops::devide( a, b );
|
||||
return Ops::divide(a, b);
|
||||
}
|
||||
|
||||
template <class RhsValueType, class ValueType, int numVars>
|
||||
Evaluation<ValueType, numVars> operator*(const RhsValueType& a, const Evaluation<ValueType, numVars>& b)
|
||||
{
|
||||
Evaluation<ValueType, numVars> result( b );
|
||||
Evaluation<ValueType, numVars> result(b);
|
||||
result *= a;
|
||||
return result;
|
||||
}
|
||||
|
@ -131,7 +131,7 @@ public:
|
||||
}
|
||||
|
||||
template <class RhsValueType>
|
||||
static inline Eval devide(const RhsValueType& a, const Eval& b)
|
||||
static inline Eval divide(const RhsValueType& a, const Eval& b)
|
||||
{
|
||||
Eval result;
|
||||
result.setValue( a/b.value() );
|
||||
|
@ -212,7 +212,7 @@ public:
|
||||
}
|
||||
|
||||
template <class RhsValueType>
|
||||
static inline Eval devide(const RhsValueType& a, const Eval& b)
|
||||
static inline Eval divide(const RhsValueType& a, const Eval& b)
|
||||
{
|
||||
Eval result;
|
||||
result.setValue( a/b.value() );
|
||||
|
@ -221,7 +221,7 @@ public:
|
||||
}
|
||||
|
||||
template <class RhsValueType>
|
||||
static inline Eval devide(const RhsValueType& a, const Eval& b)
|
||||
static inline Eval divide(const RhsValueType& a, const Eval& b)
|
||||
{
|
||||
Eval result;
|
||||
result.setValue( a/b.value() );
|
||||
|
@ -230,7 +230,7 @@ public:
|
||||
}
|
||||
|
||||
template <class RhsValueType>
|
||||
static inline Eval devide(const RhsValueType& a, const Eval& b)
|
||||
static inline Eval divide(const RhsValueType& a, const Eval& b)
|
||||
{
|
||||
Eval result;
|
||||
result.setValue( a/b.value() );
|
||||
|
@ -140,7 +140,7 @@ public:
|
||||
}
|
||||
|
||||
template <class RhsValueType>
|
||||
static inline Eval devide(const RhsValueType& a, const Eval& b)
|
||||
static inline Eval divide(const RhsValueType& a, const Eval& b)
|
||||
{
|
||||
Eval result;
|
||||
result.setValue( a/b.value() );
|
||||
|
@ -149,7 +149,7 @@ public:
|
||||
}
|
||||
|
||||
template <class RhsValueType>
|
||||
static inline Eval devide(const RhsValueType& a, const Eval& b)
|
||||
static inline Eval divide(const RhsValueType& a, const Eval& b)
|
||||
{
|
||||
Eval result;
|
||||
result.setValue( a/b.value() );
|
||||
|
@ -158,7 +158,7 @@ public:
|
||||
}
|
||||
|
||||
template <class RhsValueType>
|
||||
static inline Eval devide(const RhsValueType& a, const Eval& b)
|
||||
static inline Eval divide(const RhsValueType& a, const Eval& b)
|
||||
{
|
||||
Eval result;
|
||||
result.setValue( a/b.value() );
|
||||
|
@ -167,7 +167,7 @@ public:
|
||||
}
|
||||
|
||||
template <class RhsValueType>
|
||||
static inline Eval devide(const RhsValueType& a, const Eval& b)
|
||||
static inline Eval divide(const RhsValueType& a, const Eval& b)
|
||||
{
|
||||
Eval result;
|
||||
result.setValue( a/b.value() );
|
||||
|
@ -176,7 +176,7 @@ public:
|
||||
}
|
||||
|
||||
template <class RhsValueType>
|
||||
static inline Eval devide(const RhsValueType& a, const Eval& b)
|
||||
static inline Eval divide(const RhsValueType& a, const Eval& b)
|
||||
{
|
||||
Eval result;
|
||||
result.setValue( a/b.value() );
|
||||
|
@ -185,7 +185,7 @@ public:
|
||||
}
|
||||
|
||||
template <class RhsValueType>
|
||||
static inline Eval devide(const RhsValueType& a, const Eval& b)
|
||||
static inline Eval divide(const RhsValueType& a, const Eval& b)
|
||||
{
|
||||
Eval result;
|
||||
result.setValue( a/b.value() );
|
||||
|
@ -194,7 +194,7 @@ public:
|
||||
}
|
||||
|
||||
template <class RhsValueType>
|
||||
static inline Eval devide(const RhsValueType& a, const Eval& b)
|
||||
static inline Eval divide(const RhsValueType& a, const Eval& b)
|
||||
{
|
||||
Eval result;
|
||||
result.setValue( a/b.value() );
|
||||
|
@ -203,7 +203,7 @@ public:
|
||||
}
|
||||
|
||||
template <class RhsValueType>
|
||||
static inline Eval devide(const RhsValueType& a, const Eval& b)
|
||||
static inline Eval divide(const RhsValueType& a, const Eval& b)
|
||||
{
|
||||
Eval result;
|
||||
result.setValue( a/b.value() );
|
||||
|
Loading…
Reference in New Issue
Block a user