Skip to content

Commit 0796fd1

Browse files
committed
making the DyanmicEvaluation changes in genEvalSpecializations.py
1 parent 97f5beb commit 0796fd1

15 files changed

+263
-21
lines changed

bin/genEvalSpecializations.py

Lines changed: 249 additions & 7 deletions
Large diffs are not rendered by default.

jenkins/pre-build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /bin/bash
22

3-
# ./bin/genEvalSpecializations.py
3+
./bin/genEvalSpecializations.py
44

55
if test -n "$(git diff)"; then
66
echo "The generated source files have been manually edited or the "

opm/material/densead/Evaluation.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ class Evaluation
226226
}
227227

228228

229-
// add value and derivatives from other to this values and derivatives
229+
// add value and derivatives from other to this value and derivatives
230230
OPM_HOST_DEVICE Evaluation& operator+=(const Evaluation& other)
231231
{
232232
assert(size() == other.size());

opm/material/densead/Evaluation1.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ class Evaluation<ValueT, 1>
215215
}
216216

217217

218-
// add value and derivatives from other to this values and derivatives
218+
// add value and derivatives from other to this value and derivatives
219219
OPM_HOST_DEVICE Evaluation& operator+=(const Evaluation& other)
220220
{
221221
assert(size() == other.size());

opm/material/densead/Evaluation10.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ class Evaluation<ValueT, 10>
233233
}
234234

235235

236-
// add value and derivatives from other to this values and derivatives
236+
// add value and derivatives from other to this value and derivatives
237237
OPM_HOST_DEVICE Evaluation& operator+=(const Evaluation& other)
238238
{
239239
assert(size() == other.size());

opm/material/densead/Evaluation11.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ class Evaluation<ValueT, 11>
235235
}
236236

237237

238-
// add value and derivatives from other to this values and derivatives
238+
// add value and derivatives from other to this value and derivatives
239239
OPM_HOST_DEVICE Evaluation& operator+=(const Evaluation& other)
240240
{
241241
assert(size() == other.size());

opm/material/densead/Evaluation12.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ class Evaluation<ValueT, 12>
237237
}
238238

239239

240-
// add value and derivatives from other to this values and derivatives
240+
// add value and derivatives from other to this value and derivatives
241241
OPM_HOST_DEVICE Evaluation& operator+=(const Evaluation& other)
242242
{
243243
assert(size() == other.size());

opm/material/densead/Evaluation2.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ class Evaluation<ValueT, 2>
217217
}
218218

219219

220-
// add value and derivatives from other to this values and derivatives
220+
// add value and derivatives from other to this value and derivatives
221221
OPM_HOST_DEVICE Evaluation& operator+=(const Evaluation& other)
222222
{
223223
assert(size() == other.size());

opm/material/densead/Evaluation3.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ class Evaluation<ValueT, 3>
219219
}
220220

221221

222-
// add value and derivatives from other to this values and derivatives
222+
// add value and derivatives from other to this value and derivatives
223223
OPM_HOST_DEVICE Evaluation& operator+=(const Evaluation& other)
224224
{
225225
assert(size() == other.size());

opm/material/densead/Evaluation4.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ class Evaluation<ValueT, 4>
221221
}
222222

223223

224-
// add value and derivatives from other to this values and derivatives
224+
// add value and derivatives from other to this value and derivatives
225225
OPM_HOST_DEVICE Evaluation& operator+=(const Evaluation& other)
226226
{
227227
assert(size() == other.size());

0 commit comments

Comments
 (0)