Theseus
Compressible flow solver
Loading...
Searching...
No Matches
RunControl.hpp
Go to the documentation of this file.
1// Copyright (c) 2025-2026 Board of Trustees of the University of Illinois
2//
3// This file is part of Theseus.
4//
5// SPDX-License-Identifier: BSD-3-Clause
6#pragma once
7
8namespace Theseus
9{
10
11 inline bool StepLimitReached(int cycle, int maximum_cycle)
12 {
13 return maximum_cycle > 0 && cycle >= maximum_cycle;
14 }
15
16}
Definition AxisymmetricGeometry.hpp:15
bool StepLimitReached(int cycle, int maximum_cycle)
Definition RunControl.hpp:11