New visualization for model queue and delay events between looking at compass and looking at airspeed

This commit is contained in:
cs-powell
2024-12-07 23:19:42 -05:00
parent 2297854c28
commit 33a4b8eb7e
6 changed files with 118 additions and 46 deletions

View File

@@ -1,26 +1,26 @@
import javax.swing.UIManager;
//import CognitiveModel.ModelFiles.*;
import CognitiveModel.ModelFiles.*;
public class Main {
public static void main(String[] args) {
// Encapsulation (or lack thereof) Test
// Model m = new Model();
// testprocess1 tp1 = new testprocess1(m, null);
// tp1.runProcess();
Model m = new Model();
testprocess1 tp1 = new testprocess1(m, null);
tp1.runProcess();
// testprocess2 tp2 = new testprocess2(m, null);
// tp2.runProcess();
for (int i = 1; i<10; i++) {
if (i%2 == 0) {
int t = 0;
} else if(i == 9) {
System.out.println("Breaking now");
break;
}
}
// for (int i = 1; i<10; i++) {
// if (i%2 == 0) {
// int t = 0;
// } else if(i == 9) {
// System.out.println("Breaking now");
// break;
// }
// }
}
}