cleaning up files

This commit is contained in:
cs-powell
2024-12-26 17:50:23 -05:00
parent 0eafd83c5b
commit 3be0e2323b
3 changed files with 1 additions and 28 deletions

View File

@@ -1,9 +0,0 @@
package CognitiveModel.ModelFiles;
public class Process {
public Process() {
}
}

View File

@@ -1,19 +0,0 @@
package CognitiveModel.ModelFiles;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
public class Tests {
MindQueue m = new MindQueue();
@Test
public void test1() {
Integer i = 1;
Action a = new Vision();
m.push(a);
assertEquals(i, m.pop());
}
}

View File

@@ -40,6 +40,7 @@ public abstract class testprocess {
ScreenFrame f = new ScreenFrame(sm,d);
f.initialize();
timer1.start();
xpc.sendDREF("sim/time/sim_speed", 5f);
while (m.isActive() && !m.isEmpty()) {
innerProcess();
}