├── .github ├── ISSUE_TEMPLATE │ └── new-definition.yml └── workflows │ └── main.yml ├── .gitignore ├── CIF2-EBNF.txt ├── Detailed_changelog.cif ├── README.md ├── cif_core.dic ├── ddl.dic ├── examples ├── cell-measurement-multi-block.cif ├── cell-measurement-single-block.cif ├── complex-compositional-disorder.cif ├── elemental-composition.cif └── simple-compositional-disorder.cif ├── templ_attr.cif └── templ_enum.cif /.github/ISSUE_TEMPLATE/new-definition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COMCIFS/cif_core/HEAD/.github/ISSUE_TEMPLATE/new-definition.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COMCIFS/cif_core/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.dic~ 3 | -------------------------------------------------------------------------------- /CIF2-EBNF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COMCIFS/cif_core/HEAD/CIF2-EBNF.txt -------------------------------------------------------------------------------- /Detailed_changelog.cif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COMCIFS/cif_core/HEAD/Detailed_changelog.cif -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COMCIFS/cif_core/HEAD/README.md -------------------------------------------------------------------------------- /cif_core.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COMCIFS/cif_core/HEAD/cif_core.dic -------------------------------------------------------------------------------- /ddl.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COMCIFS/cif_core/HEAD/ddl.dic -------------------------------------------------------------------------------- /examples/cell-measurement-multi-block.cif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COMCIFS/cif_core/HEAD/examples/cell-measurement-multi-block.cif -------------------------------------------------------------------------------- /examples/cell-measurement-single-block.cif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COMCIFS/cif_core/HEAD/examples/cell-measurement-single-block.cif -------------------------------------------------------------------------------- /examples/complex-compositional-disorder.cif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COMCIFS/cif_core/HEAD/examples/complex-compositional-disorder.cif -------------------------------------------------------------------------------- /examples/elemental-composition.cif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COMCIFS/cif_core/HEAD/examples/elemental-composition.cif -------------------------------------------------------------------------------- /examples/simple-compositional-disorder.cif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COMCIFS/cif_core/HEAD/examples/simple-compositional-disorder.cif -------------------------------------------------------------------------------- /templ_attr.cif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COMCIFS/cif_core/HEAD/templ_attr.cif -------------------------------------------------------------------------------- /templ_enum.cif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COMCIFS/cif_core/HEAD/templ_enum.cif --------------------------------------------------------------------------------