An estimation language
https://www.squiggle-language.com/
d84420b1ff
* develop: hotfix: codecov stuff in `.npmignore` Rename flip argument to be more descriptive Fix pointwise not commuting for subtraction Fix missing paramater in test Rename AlgebraicShapeCombination test case Fixed package versions in `website/package.json` Refactor and rename checkOrdered Moved dependencies to devDependencies; updated versions rm react-codejar Mistake in #371 Fix build issues in components Move dependencies to devDependencies Ensure xyShape is ordered by x coordinates when multiplying by negatives ⬆️ Bump @types/node from 17.0.25 to 17.0.26 ⬆️ Bump antd from 4.19.5 to 4.20.0 Turned error into actual error Show correct errors early on when log(distribution) has bad arguments Fix subtraction not commuting under pointsets |
||
---|---|---|
.github | ||
packages | ||
.gitignore | ||
.prettierignore | ||
CONTRIBUTING.md | ||
LICENSE | ||
nixos.sh | ||
package.json | ||
README.md | ||
yarn.lock |
Squiggle
This is an experimental DSL/language for making probabilistic estimates. The full story can be found here.
Our deployments
- website/docs prod: https://squiggle-language.com
- website/docs staging: https://develop--squiggle-documentation.netlify.app/
- components storybook prod: https://squiggle-components.netlify.app/
- components storybook staging: https://develop--squiggle-components.netlify.app/
- legacy (2020) playground: https://playground.squiggle-language.com
Packages
This monorepo has several packages that can be used for various purposes. All
the packages can be found in packages
.
@quri/squiggle-lang
inpackages/squiggle-lang
contains the core language, particularly an interface to parse squiggle expressions and return descriptions of distributions or results.@quri/squiggle-components
inpackages/components
contains React components that can be passed squiggle strings as props, and return a presentation of the result of the calculation.@quri/squiggle-website
inpackages/website
The main descriptive website for squiggle, it is hosted atsquiggle-language.com
.
The playground depends on the components library which then depends on the language. This means that if you wish to work on the components library, you will need to build (no need to bundle) the language, and as of this writing playground doesn't really work.
Develop
For any project in the repo, begin by running yarn
in the top level
yarn
See packages/*/README.md
to work with whatever project you're interested in.
Contributing
See CONTRIBUTING.md
.