tand/test/Tand.Core.Benchmarks/RationalsProvider.cs
Peter d8d307545f
Refactored
- Added Benchmarks
- Added Nuke build
- Refactored directory structure
- Generated GitHub Actions config from Nuke
- Added tool to handle benchmarking from Nuke
2020-03-21 01:10:20 +01:00

17 lines
515 B
C#

using System.Collections.Generic;
using System.Linq;
using Tand.Core.Api;
namespace Tand.Core.Benchmarks
{
public interface IRationalsProvider
{
[Tand(typeof(ExecutionTimeTand<IRationalsProvider>))]
ICollection<Rational> Generate(IEnumerable<(int n, int d)> input);
}
public class RationalsProvider : IRationalsProvider
{
public ICollection<Rational> Generate(IEnumerable<(int n, int d)> input) => input.Select(tuple => new Rational(tuple.n, tuple.d)).ToList();
}
}