Rotor-Cuda
Rotor-Cuda copied to clipboard
trying to modify
Im trying to make a few changes to this program being fairly new to c++ im not sure what im missing. The first and most important change is to how it matches an xpoint. I thought as I followed the code that rotor.cpp line 566 void Rotor::checkSingleXPoint(bool compressed, Int key, int i, Point p1) {
was called from line 986 checkSingleXPoint(true, key, i, pts[i]);
but when I run it in visual studio 2019 with a breakpoint on line 566 says it wont be hit. Im not sure what im missing.
BTW the change im looking for is to find xpoint(s) where x mod(NNNN) = 0 within the search range. I am trying to start with the CPU side first.