Changeset 26874
- Timestamp:
- 02/10/22 09:22:54 (3 years ago)
- Location:
- issm/trunk-jpl/src/c/shared/Enum
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/shared/Enum/Enum.vim
r26859 r26874 1623 1623 syn keyword cType Cfsurfacesquare 1624 1624 syn keyword cType Channel 1625 syn keyword cType classes1626 1625 syn keyword cType Constraint 1627 1626 syn keyword cType Constraints … … 1630 1629 syn keyword cType ControlInput 1631 1630 syn keyword cType Covertree 1631 syn keyword cType DataSetParam 1632 1632 syn keyword cType DatasetInput 1633 syn keyword cType DataSetParam1634 1633 syn keyword cType Definition 1635 1634 syn keyword cType DependentObject … … 1644 1643 syn keyword cType ElementInput 1645 1644 syn keyword cType ElementMatrix 1645 syn keyword cType ElementVector 1646 1646 syn keyword cType Elements 1647 syn keyword cType ElementVector1648 1647 syn keyword cType ExponentialVariogram 1649 1648 syn keyword cType ExternalResult … … 1652 1651 syn keyword cType Friction 1653 1652 syn keyword cType Gauss 1654 syn keyword cType GaussianVariogram1655 syn keyword cType gaussobjects1656 1653 syn keyword cType GaussPenta 1657 1654 syn keyword cType GaussSeg 1658 1655 syn keyword cType GaussTetra 1659 1656 syn keyword cType GaussTria 1657 syn keyword cType GaussianVariogram 1660 1658 syn keyword cType GenericExternalResult 1661 1659 syn keyword cType GenericOption … … 1673 1671 syn keyword cType IssmDirectApplicInterface 1674 1672 syn keyword cType IssmParallelDirectApplicInterface 1675 syn keyword cType krigingobjects1676 1673 syn keyword cType Load 1677 1674 syn keyword cType Loads … … 1684 1681 syn keyword cType Matice 1685 1682 syn keyword cType Matlitho 1686 syn keyword cType matrixobjects1687 1683 syn keyword cType MatrixParam 1688 1684 syn keyword cType Misfit … … 1697 1693 syn keyword cType Observations 1698 1694 syn keyword cType Option 1695 syn keyword cType OptionUtilities 1699 1696 syn keyword cType Options 1700 syn keyword cType OptionUtilities1701 1697 syn keyword cType Param 1702 1698 syn keyword cType Parameters … … 1712 1708 syn keyword cType Regionaloutput 1713 1709 syn keyword cType Results 1710 syn keyword cType RiftStruct 1714 1711 syn keyword cType Riftfront 1715 syn keyword cType RiftStruct1716 1712 syn keyword cType SealevelGeometry 1717 1713 syn keyword cType Seg 1718 1714 syn keyword cType SegInput 1715 syn keyword cType SegRef 1719 1716 syn keyword cType Segment 1720 syn keyword cType SegRef1721 1717 syn keyword cType SpcDynamic 1722 1718 syn keyword cType SpcStatic … … 1737 1733 syn keyword cType Vertex 1738 1734 syn keyword cType Vertices 1735 syn keyword cType classes 1736 syn keyword cType gaussobjects 1737 syn keyword cType krigingobjects 1738 syn keyword cType matrixobjects 1739 1739 syn keyword cType AdjointBalancethickness2Analysis 1740 1740 syn keyword cType AdjointBalancethicknessAnalysis -
issm/trunk-jpl/src/c/shared/Enum/Synchronize.sh
r26606 r26874 193 193 END 194 194 #}}} 195 #Build issmenum.jl {{{ 196 #Header 197 cat <<END > $ISSM_DIR/src/c/shared/Enum/issmenums.jl 198 # WARNING: DO NOT MODIFY THIS FILE 199 # this file has been automatically generated by Synchronize.sh 200 # Please read README for more information 201 202 @enum IssmEnum begin 203 END 204 cat temp | awk '{print "\t" $1}' >> $ISSM_DIR/src/c/shared/Enum/issmenums.jl 205 #Move on to EnumToString 206 cat <<END >> $ISSM_DIR/src/c/shared/Enum/issmenums.jl 207 end 208 209 function EnumToString(enum::IssmEnum) 210 END 211 cat temp | awk '{print "\tif(enum==" $1 ") return \"" substr($1,1,length($1)-4) "\" end"}' >> $ISSM_DIR/src/c/shared/Enum/issmenums.jl 212 #Move on to StringToEnumx 213 cat <<END >> $ISSM_DIR/src/c/shared/Enum/issmenums.jl 214 end 215 END 216 #}}} 195 217 196 218 #vim file
Note:
See TracChangeset
for help on using the changeset viewer.