MLambda.Genesis.AST
0.3.0
dotnet add package MLambda.Genesis.AST --version 0.3.0
NuGet\Install-Package MLambda.Genesis.AST -Version 0.3.0
<PackageReference Include="MLambda.Genesis.AST" Version="0.3.0" />
<PackageVersion Include="MLambda.Genesis.AST" Version="0.3.0" />
<PackageReference Include="MLambda.Genesis.AST" />
paket add MLambda.Genesis.AST --version 0.3.0
#r "nuget: MLambda.Genesis.AST, 0.3.0"
#:package MLambda.Genesis.AST@0.3.0
#addin nuget:?package=MLambda.Genesis.AST&version=0.3.0
#tool nuget:?package=MLambda.Genesis.AST&version=0.3.0
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.Parser (>= 0.3.0)
NuGet packages (3)
Showing the top 3 NuGet packages that depend on MLambda.Genesis.AST:
| Package | Downloads |
|---|---|
|
MLambda.Lang.Math
Mathematical expression language for .NET: recursive-descent parser, operator-precedence printer, symbolic AST (Num, Sym, Add, Mul, Pow, Neg, FuncCall) and numeric evaluator. |
|
|
MLambda.Genesis.EBNF
EBNF grammar parser and compiler. Translates ISO 14977 EBNF source into an executable dictionary of parser combinators, with lazy knot-tying for mutual recursion. |
|
|
MLambda.Lang.SQL
SQL SELECT language front-end built on MLambda.Genesis.Parser. Supports joins, subqueries, aggregates, schema analysis and query code generation. |
GitHub repositories
This package is not used by any popular GitHub repositories.