Peano
Loading...
Searching...
No Matches
Storage.py
Go to the documentation of this file.
1# This file is part of the ExaHyPE2 project. For conditions of distribution and
2# use, please see the copyright notice at www.peano-framework.org
3from enum import Enum
4
5
6class Storage(Enum):
7 CallStack = 0
8 Heap = 1
9 SmartPointers = 2
10