MLambda.Lang.Math
0.2.8
dotnet add package MLambda.Lang.Math --version 0.2.8
NuGet\Install-Package MLambda.Lang.Math -Version 0.2.8
<PackageReference Include="MLambda.Lang.Math" Version="0.2.8" />
<PackageVersion Include="MLambda.Lang.Math" Version="0.2.8" />
<PackageReference Include="MLambda.Lang.Math" />
paket add MLambda.Lang.Math --version 0.2.8
#r "nuget: MLambda.Lang.Math, 0.2.8"
#:package MLambda.Lang.Math@0.2.8
#addin nuget:?package=MLambda.Lang.Math&version=0.2.8
#tool nuget:?package=MLambda.Lang.Math&version=0.2.8
MLambda.Genesis
A .NET 10 meta-language workbench for building domain-specific languages through combinatorial parsing, schema-driven AST generation, and symbolic algebra.
Packages
| Package | Description |
|---|---|
MLambda.Genesis.Parser |
Monadic parser combinator library with full LINQ support |
MLambda.Genesis.AST |
AST node hierarchy, compilation pipeline, and visitor infrastructure |
MLambda.Genesis.EBNF |
EBNF grammar parser and compiler to executable combinators |
MLambda.Genesis.ASDL |
ASDL schema parser and C# AST type emitter |
MLambda.Genesis.Generator |
EBNF + ASDL → C# generator (dotnet tool: mlambda-gen) |
MLambda.Lang.Math |
Mathematical expression language: parser, printer, evaluator |
MLambda.Genesis.Algebra |
Symbolic algebra: differentiation, integration, expansion, solving |
MLambda.Lang.CAS |
CAS rule DSL compiler producing IRewriteSystem implementations |
MLambda.Lang.SQL |
SQL SELECT language front-end with analyser and code generator |
Documentation
Full documentation: https://genesis.mlambda.net
Quick Start
dotnet add package MLambda.Genesis.Parser
dotnet add package MLambda.Genesis.Algebra
using MLambda.Lang.Math;
using MLambda.Genesis.Algebra;
var expr = MathParser.Parse("x^2 + 2*x + 1");
var deriv = Differentiator.D(expr, new Sym("x"));
Console.WriteLine(MathPrinter.Print(deriv)); // 2 * x + 2
License
MIT — see LICENSE.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- MLambda.Genesis.AST (>= 0.2.8)
- MLambda.Genesis.Parser (>= 0.2.8)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on MLambda.Lang.Math:
| Package | Downloads |
|---|---|
|
MLambda.Lang.CAS
CAS rule DSL compiler: write symbolic rewrite rules in a typed pattern-matching language and compile them to C# IRewriteSystem implementations with AC-matching support. |
|
|
MLambda.Genesis.Algebra
Symbolic algebra library for .NET: differentiation, integration (multi-strategy with Risch core), polynomial expansion, equation solving, GCD, factoring and Taylor series. |
GitHub repositories
This package is not used by any popular GitHub repositories.