Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,10 @@
"CARTESIAN": {
"type": "boolean",
"description": "Whether atomic positions are expressed in cartesian coordinates."
},
"RESTART": {
"type": "boolean",
"description": "Whether to continue from the RTDB of a previous run in the same working directory, taking its geometry, instead of declaring one. Optional: absent means no restart."
}
},
"required": [
Expand Down
2 changes: 1 addition & 1 deletion src/py/mat3ra/esse/data/schemas.py

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from __future__ import annotations

from typing import Literal
from typing import Literal, Optional

from pydantic import BaseModel

Expand Down Expand Up @@ -54,3 +54,7 @@ class NWChemTotalEnergyContextProviderSchema(BaseModel):
"""
Whether atomic positions are expressed in cartesian coordinates.
"""
RESTART: Optional[bool] = None
"""
Whether to continue from the RTDB of a previous run in the same working directory, taking its geometry, instead of declaring one. Optional: absent means no restart.
"""
Loading