build alternatives and similar packages
Based on the "Algorithms" category.
Alternatively, view build alternatives based on common mentions on social networks and blogs.
-
arithmoi
Number theory: primes, arithmetic functions, modular computations, special sequences -
imj-animation
Monorepo for a multi-player game engine, and game examples -
search-algorithms
Haskell library containing common graph search algorithms -
lca
Improves the known complexity of online lowest common ancestor search to O(log h) persistently, and without preprocessing -
integer-logarithms
Integer logarithms, originally split from arithmoi package -
incremental-sat-solver
Simple, Incremental SAT Solving as a Haskell Library -
treeviz
Haskell library for visualizing algorithmic decomposition of computations. -
nonlinear-optimization-ad
Wrapper of nonlinear-optimization package for using with ad and backprop packages -
infinite-search
An implementation of Martin Escardo's exhaustively searchable sets in Haskell. -
edit-distance-vector
Calculate edit scripts and distances between Vectors. -
primesieve
A collection of packages related to math, algorithms and science, in Haskell. -
graph-generators
A Haskell library for creating random Data.Graph instances using several pop -
edit-distance-linear
Levenshtein edit distance in linear memory (also turns out to be faster than C++) -
epanet-haskell
Call the EPANET toolkit via Haskell's Foreign Function Interface
Clean code begins in your IDE with SonarLint
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of build or a related project?
README
Build Systems à la Carte
This project provides an executable framework for developing and comparing build systems, viewing them as related points in landscape rather than as isolated phenomena. The code derives from the ICFP 2018 paper "Build Systems à la Carte" (PDF).
Getting Started
You may be interested to:
- Run
stack test
to execute all the provided build systems on a very simple example. - Look at the HTML documentation of all modules for the last release,
or generate it yourself using
stack haddock
. - Read the code, particularly [Build.System](src/Build/System.hs), which is the concrete implementation of all build systems.
Related Material
- Blog post on the motivation behind the project.
- Blog post on the task abstraction.
- Blog post reviewing how the paper was written.
- Talk by Neil on this paper and Shake.
- A talk on build systems by Andrey.