Jose Celano
Jose Celano
[PR](https://github.com/greatest-ape/aquatic/pull/208) merged.
The main function: 
I've added a new binary for profiling. What I'm doing to profile is: - Run the tracker for 60 seconds - At the same time run the Aquatic UDP load...
### Main function   ### Process valid request  ### Some potential conclusions (not sure) From the graphs above it seems: - 17.9% of the effective time processing a...
I accidentally changed the number of active requests from 50 to 1000 while I was doing some tests with different parameters: ```rust #[derive(Default)] struct ActiveRequests { rb: StaticRb, // the...
I'm also using [flamegraph](https://crates.io/crates/flamegraph). I think I still have to adjust some OD parameters to get a better graph: 
Zooming in on the part tho handle the announce request: 
Hi, Wow!, that was a very fast reply. Thanks. I'm trying to build a PHP complex library with arbitrary precision based on this extension. I was trying to replace `atan`...
Hi, more feedback. I was able to increase the precision using `n=10000000` and it takes a couple of minutes to execute it. The final result is: ``` -'-0.78539816339745' +'-0.7853981883974458096158484647' ```...
This paper explains al alternative way to calculate it: https://digitalcommons.lmu.edu/cgi/viewcontent.cgi?article=1101&context=math_fac And some python examples: https://stackoverflow.com/questions/44249104/calculating-inverse-trigonometric-functions-with-formulas But no idea what is the maximum precision possible with those methods.