12345678910111213141516171819202122232425262728 |
- /****************************************************************************
- * Parser error 065: Element specifier bounds reversed.
- *
- * Expect an error on the line:
- * INCLUDE_ELEMENTS = [ 1e9 TO 0 ]
- *
- * Author: Jed Wing <[email protected]>
- * Date: 2008-04-04
- ****************************************************************************/
- TIME_STEP = 1e-6
- degeneracy POLYGON_LIST
- {
- VERTEX_LIST
- {
- [0, 0, 0]
- }
- ELEMENT_CONNECTIONS { [0, 0, 0] }
- DEFINE_SURFACE_REGIONS
- {
- r1
- {
- INCLUDE_ELEMENTS = [ 1e9 TO 0 ]
- }
- }
- }
|