Sylvester.Arithmetic
0.2.1
See the version list below for details.
dotnet add package Sylvester.Arithmetic --version 0.2.1
NuGet\Install-Package Sylvester.Arithmetic -Version 0.2.1
<PackageReference Include="Sylvester.Arithmetic" Version="0.2.1" />
paket add Sylvester.Arithmetic --version 0.2.1
#r "nuget: Sylvester.Arithmetic, 0.2.1"
// Install Sylvester.Arithmetic as a Cake Addin #addin nuget:?package=Sylvester.Arithmetic&version=0.2.1 // Install Sylvester.Arithmetic as a Cake Tool #tool nuget:?package=Sylvester.Arithmetic&version=0.2.1
Sylvester.Arithmetic
This library implements lightweight dependently typed natural number arithmetic and constraints which enable arithmetic operations like bounds checking to be performed at compile-time by the F# type checker as long as the values for the operations are known at compile-time.
open Sylvester.Arithmetic
open Sylvester.Arithmetic.N10
///Create typed representations of some natural numbers
let a,b,c = new N<400>(), new N<231111>(), new N<6577700>()
a + b + c
N<6809211UL>
These values have types derived from Sylvester.Arithmetic.N10. The type of a
is N10<0,0,0,0,0,0,0,4,0,0> and the type of c
is N10<0,0,0,6,5,7,7,7,0,0>.
c.GetType()
Sylvester.Arithmetic.N10+N10`10[Sylvester.Arithmetic.Base10+0,Sylvester.Arithmetic.Base10+0,Sylvester.Arithmetic.Base10+0,Sylvester.Arithmetic.Base10+6,Sylvester.Arithmetic.Base10+5,Sylvester.Arithmetic.Base10+7,Sylvester.Arithmetic.Base10+7,Sylvester.Arithmetic.Base10+7,Sylvester.Arithmetic.Base10+0,Sylvester.Arithmetic.Base10+0]
The types of the results of arithmetic operations depend on the values of the operands.
let d = (a + b + c) * four
d
N<27236844UL>
d.GetType()
Sylvester.Arithmetic.N10+N10`10[Sylvester.Arithmetic.Base10+0,Sylvester.Arithmetic.Base10+0,Sylvester.Arithmetic.Base10+2,Sylvester.Arithmetic.Base10+7,Sylvester.Arithmetic.Base10+2,Sylvester.Arithmetic.Base10+3,Sylvester.Arithmetic.Base10+6,Sylvester.Arithmetic.Base10+8,Sylvester.Arithmetic.Base10+4,Sylvester.Arithmetic.Base10+4]
This enables type-level constraints to be written which run at compile-time
check(d +< ten) /// Type error
Type mismatch. Expecting a
'Constraint<Success>'
but given a
'Constraint<Failure>'
The type 'Success' does not match the type 'Failure'
a - (two * a) /// A negative number results in a type representing an underflow at compile-time
N10Underflow
let myop a b c d =
check(a +> b)
check (b +== zero)
check (c +== (a + one))
a + b + c + d
myop four five four ten ///Type error. Program will not compile
Type mismatch. Expecting a
'Constraint<Success>'
but given a
'Constraint<Failure>'
The type 'Success' does not match the type 'Failure'
Type mismatch. Expecting a
'Constraint<Success>'
but given a
'Constraint<Failure>'
The type 'Success' does not match the type 'Failure'
let myop a b c d =
check(a +> b)
check (b +== zero)
check (c +== (a + one))
a + b + c + d
myop seven zero eight ten ///Program compiles once the parameters to myop satisfy the arithmetic constraints
N<25UL>
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net45 is compatible. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
- FSharp.Core (>= 4.3.4)
NuGet packages (3)
Showing the top 3 NuGet packages that depend on Sylvester.Arithmetic:
Package | Downloads |
---|---|
Sylvester.tf
High-level functional and verifiable TensorFlow 2.0 API. |
|
Sylvester.Collections
Sylvester number-parameterized collection types. These collection types can perform static verification of lengths and indices as long as some information about these values is available at compile time. |
|
Sylvester.Tensors
Linear algebra types with type-level numeric dimensions |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.2.8.1 | 560 | 5/11/2021 |
0.2.8 | 320 | 5/11/2021 |
0.2.7 | 465 | 3/8/2021 |
0.2.6.1 | 403 | 3/7/2021 |
0.2.6 | 398 | 3/7/2021 |
0.2.5.1 | 497 | 2/6/2020 |
0.2.5 | 512 | 2/6/2020 |
0.2.4 | 1,814 | 1/16/2020 |
0.2.3 | 466 | 1/16/2020 |
0.2.2.1 | 2,051 | 1/3/2020 |
0.2.2 | 470 | 1/3/2020 |
0.2.1 | 627 | 12/30/2019 |
0.2.0 | 501 | 12/30/2019 |
0.1.7 | 544 | 6/23/2019 |
0.1.6 | 666 | 6/22/2019 |
0.1.5.1 | 829 | 6/21/2019 |
0.1.3 | 538 | 6/12/2019 |
0.1.2.2 | 537 | 6/10/2019 |
0.1.2.1 | 567 | 6/10/2019 |
Fix bug with using constraints with derived classes.