public code v1

This commit is contained in:
2026-05-22 11:14:29 +02:00
parent 427197ec5a
commit b8141736eb
28859 changed files with 575079 additions and 0 deletions
@@ -0,0 +1,16 @@
<module>
<subclass>afryca.ase.Module</subclass>
<file></file>
<name>RandomFPR</name>
<description>Random FPR generators</description>
<simulationCode>
var n = 3;
</simulationCode>
<input>
<parameter>
<id>n</id>
<value>java.lang.Integer</value>
</parameter>
</input>
<output>afryca.fpr.FPR</output>
</module>
@@ -0,0 +1,10 @@
<function>
<subclass>afryca.ase.Function</subclass>
<file></file>
<category>RandomFPR</category>
<name>AdditiveConsistencyRandomFPR</name>
<description></description>
<code>
return consistency.AdditiveConsistencyRandomFPR(n);
</code>
</function>
@@ -0,0 +1,10 @@
<function>
<subclass>afryca.ase.Function</subclass>
<file></file>
<category>RandomFPR</category>
<name>ChiclanaRandomFPR</name>
<description>Chiclana et al [IEEE TFS 2009]</description>
<code>
return consistency.chiclanaRandomFPR(n);
</code>
</function>
@@ -0,0 +1,10 @@
<function>
<subclass>afryca.ase.Function</subclass>
<file></file>
<category>RandomFPR</category>
<name>MultiplicativeConsistencyRandomFPR</name>
<description></description>
<code>
return consistency.multiplicativeConsistencyRandomFPR(n);
</code>
</function>