Commit 39ca99a7 authored by HSINYUAN CHEN's avatar HSINYUAN CHEN

0.85 to 0.5

parent e9640c53
......@@ -454,7 +454,7 @@ function trialRoutineEnd(snapshot) {
console.log("Not correct");
}
if (((trials1.thisN + 1) === trials1.nTotal)) {
if (((number_correct / (trials1.nTotal + 1)) >= 0.85)) {
if (((number_correct / (trials1.nTotal + 1)) >= 0.5)) {
trials2.finished = true;
console.log("Finished.");
} else {
......
......@@ -461,7 +461,7 @@ function trialRoutineEnd(snapshot) {
console.log("Not correct");
}
if (((trials1.thisN + 1) === trials1.nTotal)) {
if (((number_correct / (trials1.nTotal + 1)) >= 0.85)) {
if (((number_correct / (trials1.nTotal + 1)) >= 0.5)) {
trials2.finished = true;
console.log("Finished.");
} else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment