Initial Commit - works well, but too memory intensive

This commit is contained in:
2021-11-09 20:24:22 -06:00
commit 82d5500ae8
3 changed files with 339 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
public abstract class Equations {
public static double pValue(Integer w, Integer w_a, Integer w_b, Integer w_ab) {
return 1.0;
}
}