-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SOF-7449: refactor accuracy levels into a reusable schema
- Loading branch information
Showing
14 changed files
with
209 additions
and
137 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"$id": "core/reusable/accuracy-level", | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"title": "Reusable accuracy levels schema", | ||
"description": "Used to specify different accuracy levels of a parameter, e.g., wavefunction and charge density cutoffs.", | ||
"type": "object", | ||
"additionalProperties": false, | ||
"properties": { | ||
"standard": { | ||
"type": "number", | ||
"description": "Parameter value for standard or default accuracy calculation." | ||
}, | ||
"high": { | ||
"type": "number", | ||
"description": "Parameter value for high precision calculation." | ||
}, | ||
"low": { | ||
"type": "number", | ||
"description": "Parameter value for low precision calculation." | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"$id": "core/reusable/accuracy-level", | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"title": "Reusable accuracy levels schema", | ||
"description": "Used to specify different accuracy levels of a parameter, e.g., wavefunction and charge density cutoffs.", | ||
"type": "object", | ||
"additionalProperties": false, | ||
"properties": { | ||
"standard": { | ||
"type": "number", | ||
"description": "Parameter value for standard or default accuracy calculation." | ||
}, | ||
"high": { | ||
"type": "number", | ||
"description": "Parameter value for high precision calculation." | ||
}, | ||
"low": { | ||
"type": "number", | ||
"description": "Parameter value for low precision calculation." | ||
} | ||
} | ||
} |
Oops, something went wrong.