https://github.com/adanjoga/nsga3/blob/00d88fa451d16275a0709d1bdc463effc905166b/src/nsga3.h#L268 I added a print statement ```c++ printf(">P:%d R:%lu<", popsize, refepoints.size()); ``` And I have noticed that `popsize` is **92** while `refepoints.size()` is **91**. Why is that?
nsga3/src/nsga3.h
Line 268 in 00d88fa
I added a print statement
And I have noticed that
popsizeis 92 whilerefepoints.size()is 91. Why is that?