FreeFOAM The Cross-Platform CFD Toolkit
Hosted by SourceForge:
Get FreeFOAM at SourceForge.net.
            Fast, secure and Free Open Source software downloads

checkConstantOption.H

Go to the documentation of this file.
00001 //
00002 // checkConstantOption.H
00003 // ~~~~~~~~~~~~~~~~~~~~~
00004 // unless -constant is present, skip startTime if it is "constant"
00005 
00006     if
00007     (
00008         !args.optionFound("constant")
00009      && (startTime < Times.size()-1)
00010      && (Times[startTime].name() == "constant")
00011     )
00012     {
00013         startTime++;
00014     }
00015 
00016 // ************************ vim: set sw=4 sts=4 et: ************************ //
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines