File tree Expand file tree Collapse file tree 2 files changed +20
-1
lines changed
Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change 1+ version : 2
2+ updates :
3+ # Enable version updates for nuget
4+ - package-ecosystem : " nuget"
5+ # Look for NuGet dependency info from the `src` directory
6+ directory : " /src/"
7+ # Check the nuget registry for updates every day (weekdays) schedule:
8+ schedule :
9+ interval : " daily"
Original file line number Diff line number Diff line change 11using System ;
2+ using System . Linq ;
23using BenchmarkDotNet . Attributes ;
34using BenchmarkDotNet . Running ;
45
@@ -44,8 +45,17 @@ public void Atan()
4445 var actualF = Fix64 . Atan ( angle ) ;
4546 }
4647 }
48+
49+ [ Benchmark ]
50+ public void Atan2 ( )
51+ {
52+ foreach ( var angle in atanAngles )
53+ {
54+ var actualF = Fix64 . Atan2 ( angle , angle ) ;
55+ }
56+ }
4757 }
48-
58+
4959 class Program
5060 {
5161 static void Main ( string [ ] args )
You can’t perform that action at this time.
0 commit comments