Skip to content

Commit 30c277a

Browse files
committed
zero background comment warning
1 parent 2379a89 commit 30c277a

File tree

1 file changed

+5
-0
lines changed
  • grb-trigger-algorithms/algorithms_c/pfocus_c

1 file changed

+5
-0
lines changed

grb-trigger-algorithms/algorithms_c/pfocus_c/pfocus.c

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,11 @@ void focus_maximize(Focus *f, Curve *p, Curve *acc) {
8989
}
9090

9191
void focus_step(Focus *f, int x_t, double b_t) {
92+
/*
93+
b_t IS SUPPOSED TO BE GREATER THAN ZERO.
94+
there was no need to deal with this for the purpose of the paper.
95+
please be mindful of this with other applications.
96+
*/
9297
Stack *curves = f->curves;
9398
Curve *p = stack_pop(curves);
9499
Curve acc = {p->x + x_t, p->b + b_t, p->t + 1, p->m};

0 commit comments

Comments
 (0)