Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
koenderks committed Nov 24, 2024
1 parent 3b1356b commit e508aba
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion inst/qml/auditClassicalModelFairness.qml
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ Form
{
name: "seed"
label: qsTr("Seed")
defaultValue: Math.floor(Math.random() * 1000); // Init with random integer in [1,...,999]
defaultValue: Math.floor(Math.random() * 1000) // Init with random integer in [1,...,999]
min: -999
max: 999
info: qsTr("Selects the seed for the random number generator in order to reproduce results.")
Expand Down
2 changes: 1 addition & 1 deletion inst/qml/auditClassicalNumberBunching.qml
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ Form
{
name: "seed"
label: qsTr("Seed")
defaultValue: Math.floor(Math.random() * 1000); // Init with random integer in [1,...,999]
defaultValue: Math.floor(Math.random() * 1000) // Init with random integer in [1,...,999]
min: -999
max: 999
info: qsTr("Selects the seed for the random number generator in order to reproduce results.")
Expand Down
2 changes: 1 addition & 1 deletion inst/qml/common/selection/Seed.qml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ IntegerField
id: seed
text: qsTr("Seed")
name: "seed"
defaultValue: Math.floor(Math.random() * 1000); // Init with random integer in [1,...,999]
defaultValue: Math.floor(Math.random() * 1000) // Init with random integer in [1,...,999]
min: -999
max: 999
enabled: enable
Expand Down

0 comments on commit e508aba

Please sign in to comment.