repo.or.cz
/
foam-extend-3.2.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git]
/
src
/
foam
/
include
/
checkConstantOption.H
blob
9f39ac65413c0f6bbb1b510993f3e122fea3955f
1
//
2
// checkConstantOption.H
3
// ~~~~~~~~~~~~~~~~~~~~~
4
// unless -constant is present, skip startTime if it is "constant"
5
6
if
7
(
8
!args.optionFound("constant")
9
&& (startTime < Times.size()-1)
10
&& (Times[startTime].name() == "constant")
11
)
12
{
13
startTime++;
14
}