aboutsummaryrefslogtreecommitdiff
path: root/src/gen/equation.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gen/equation.h')
-rw-r--r--src/gen/equation.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/gen/equation.h b/src/gen/equation.h
index 665c153..aece5fa 100644
--- a/src/gen/equation.h
+++ b/src/gen/equation.h
@@ -11,7 +11,7 @@
#include "misc/types.h"
/**
- * GENERATOR(gen_t)
+ * GENERATOR(gen_f)
* Creates a random a parameter by selecting a random field
* element from the curve field.
* Always succeeds.
@@ -24,7 +24,7 @@
GENERATOR(a_gen_random);
/**
- * GENERATOR(gen_t)
+ * GENERATOR(gen_f)
* Creates a parameter by reading from input.
*
* @param curve A curve_t being generated
@@ -35,7 +35,7 @@ GENERATOR(a_gen_random);
GENERATOR(a_gen_input);
/**
- * GENERATOR(gen_t)
+ * GENERATOR(gen_f)
* Creates a parameter by reading once from input.
*
* @param curve A curve_t being generated
@@ -46,7 +46,7 @@ GENERATOR(a_gen_input);
GENERATOR(a_gen_once);
/**
- * GENERATOR(gen_t)
+ * GENERATOR(gen_f)
* Creates a parameter set to zero.
*
* @param curve A curve_t being generated
@@ -57,7 +57,7 @@ GENERATOR(a_gen_once);
GENERATOR(a_gen_zero);
/**
- * GENERATOR(gen_t)
+ * GENERATOR(gen_f)
* Creates a parameter set to one.
*
* @param curve A curve_t being generated
@@ -68,7 +68,7 @@ GENERATOR(a_gen_zero);
GENERATOR(a_gen_one);
/**
- * GENERATOR(gen_t)
+ * GENERATOR(gen_f)
*
* @param curve A curve_t being generated
* @param cfg An application config
@@ -78,7 +78,7 @@ GENERATOR(a_gen_one);
GENERATOR(a_gen_seed);
/**
- * GENERATOR(gen_t)
+ * GENERATOR(gen_f)
* Creates a random b parameter by selecting a random field
* element from the curve field.
*
@@ -90,7 +90,7 @@ GENERATOR(a_gen_seed);
GENERATOR(b_gen_random);
/**
- * GENERATOR(gen_t)
+ * GENERATOR(gen_f)
* Creates b parameter by reading from input.
*
* @param curve A curve_t being generated
@@ -101,7 +101,7 @@ GENERATOR(b_gen_random);
GENERATOR(b_gen_input);
/**
- * GENERATOR(gen_t)
+ * GENERATOR(gen_f)
* Creates b parameter by reading once from input.
*
* @param curve A curve_t being generated
@@ -112,7 +112,7 @@ GENERATOR(b_gen_input);
GENERATOR(b_gen_once);
/**
- * GENERATOR(gen_t)
+ * GENERATOR(gen_f)
* Creates b parameter set to zero.
*
* @param curve A curve_t being generated
@@ -123,7 +123,7 @@ GENERATOR(b_gen_once);
GENERATOR(b_gen_zero);
/**
- * GENERATOR(gen_t)
+ * GENERATOR(gen_f)
* Creates b parameter set to one.
*
* @param curve A curve_t being generated
@@ -134,7 +134,7 @@ GENERATOR(b_gen_zero);
GENERATOR(b_gen_one);
/**
- * GENERATOR(gen_t)
+ * GENERATOR(gen_f)
*
* @param curve A curve_t being generated
* @param cfg An application config