Skip to content

Commit

Permalink
Change original/duplicate naming for periodic boundary pairs to donor…
Browse files Browse the repository at this point in the history
…/receiver
  • Loading branch information
LeilaGhaffari committed Jul 22, 2024
1 parent 4d15ea3 commit 27183c2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions examples/cube/cube_periodic_xy_user.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
{
"Periodic":
{
"OriginalAttributes": [3, 2],
"DuplicateAttributes": [4, 6]
"DonorAttributes": [3, 2],
"ReceiverAttributes": [4, 6]
},
"Absorbing":
{
Expand Down
10 changes: 5 additions & 5 deletions scripts/schema/config/boundaries.json
Original file line number Diff line number Diff line change
Expand Up @@ -227,11 +227,11 @@
{
"type": "object",
"additionalProperties": false,
"required": ["OriginalAttributes", "DuplicateAttributes"],
"required": ["DonorAttributes", "ReceiverAttributes"],
"properties":
{
"OriginalAttributes": { "$ref": "#/$defs/OriginalAttributes" },
"DuplicateAttributes": { "$ref": "#/$defs/DuplicateAttributes" }
"DonorAttributes": { "$ref": "#/$defs/DonorAttributes" },
"ReceiverAttributes": { "$ref": "#/$defs/ReceiverAttributes" }
}
}
},
Expand Down Expand Up @@ -301,14 +301,14 @@
"items": { "type": "integer"},
"minItems": 1
},
"OriginalAttributes":
"DonorAttributes":
{
"type": "array",
"additionalItems": false,
"items": { "type": "integer"},
"minItems": 1
},
"DuplicateAttributes":
"ReceiverAttributes":
{
"type": "array",
"additionalItems": false,
Expand Down

0 comments on commit 27183c2

Please sign in to comment.