Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
IBenchmarker.cs
1using System;
2
4{
8 public interface IBenchmarker : IDisposable
9 {
13 string[] Tests { get; }
14
22 void Stop(string Name, long N, long M, long StartTicks);
23
29
35
41
47
53 bool Remove(string Name);
54 }
55}
Class that keeps track of benchmarking results and timing.
Definition: IBenchmarker.cs:9
string GetResultScriptTicks()
Gets benchmarking result in ticks, as script.
bool Remove(string Name)
Removes a benchmark.
string GetResultScriptMilliseconds()
Gets benchmarking result in milliseconds, as script.
string GetResultScriptSeconds()
Gets benchmarking result in seconds, as script.
string GetResultScriptMicroseconds()
Gets benchmarking result in microseconds, as script.
void Stop(string Name, long N, long M, long StartTicks)
Stops a benchmark.
string[] Tests
Registered tests.
Definition: IBenchmarker.cs:13