All Projects → Drup → LILiS

Drup / LILiS

Licence: MIT License
L-system interpreter in OCaml

Programming Languages

ocaml
1615 projects
shell
77523 projects
Makefile
30231 projects

Labels

Projects that are alternatives of or similar to LILiS

aframe-lsystem-component
L-System/LSystem component for A-Frame to draw 3D turtle graphics. Using Lindenmayer as backend.
Stars: ✭ 33 (+43.48%)
Mutual labels:  lsystem
ofxLSystemGrammar
openFrameworks addon that implements most of the string rewriting grammars described in the book "The Algorithimic Beauty of Plants"
Stars: ✭ 36 (+56.52%)
Mutual labels:  lsystem

LILiS Build Status

LILiS is a Library to Interpret Lindenmayer Systems.

Von Koch

L-system

L-systems are a kind of formal grammar defined by Lindermayer.

Description of LILiS

The goal of this library is to evaluate L-systems and to visualise them (in 2D only). The emphasis is put on high speed, static verifications and optimizations, modularity and pretty drawings.

This project is partially inspired by Lpy.

The project is split in 4 parts:

  • A small library to calculate arithmetic expressions;
  • A library to parse and evaluate L-systems;
  • A graphic library to draw such L-systems;
  • An executable.

The documentation for the various libraries can be found here.

The executable can be used to draw any L-system like those in bank_lsystem for examples.

Computing L-systems happens to be a very nice way to stress the flatMap operation on some data structures. If you have any stream library (or other data structures) you want to test, feel free to ask.

Get started!

Do

$ opam install cairo2 lablgtk cmdliner lilis

and head over there.

Dependencies

  • The parser depends on menhir.
  • cppo is a building dependency.
  • The engine implementation depends on Containers.
  • There are currently two graphical backends :
  • Cmdliner is used by the executable glilis_ex.

You can install most of it with :

$ opam install cppo containers cairo2 lablgtk cmdliner menhir

Optional dependencies

Some stream library are used if they are available :

For the benchmarks, the Benchmark package is needed.

How to

To build, just do :

$ make

The optional dependencies can be controlled by configure flags. See configure --help for a complete list.

To produce the documentation :

$ make docs

You can also install the various libraries with :

$ make install

If you used configure with the flag --enable-executable and both graphical backends, it will produce an executable glilis_ex.native. See glilis_ex.native --help for more information.

You can also enable benchmarks and tests with the flag --enable-tests. The benchmarks will be built if the relevant libraries are available.

Architecture of the project

This project has five parts :

  • calc, a very small library to evaluate arithmetic expression;
  • lilis, the core engine;
  • glilis, the graphical stuff;
  • streams, various stream implementation;
  • test, some benchmarks.

TODO

Current potential goals:

  • Performance related :

    • Find a way to group arithmetic expressions. First in a given symbol F(x*2,x*2) and, more interesting : rule F(x) = F(x/2) + F(x/2).
    • Symbol grouping : F(x) F(y)F(x+y). Be very careful as this is not always true. Already done for "constant" symbols.
    • Allow simple expressions to be pre-computed : rule S(n) = S(n+1). This may be very hard in general.
    • Work on the trigo stuff in the drawing part of the library.
    • Investigate the idea "Compute the size of the result in advance, allocate a huge array, copy the result of each rule, ???, profit." It may be a good way to parallelize lilis.
    • Play with Parmap a bit more, use the fact that the last operation is an iter (like for drawing) since we don't have to do the last (and very costly) concat in this case.
  • Improve the verification some more, especially in relation to :

    • Token redefinition
    • Reusability (be able to recover the definition environment)
  • New data structures! I'm always very happy to test them!

  • Implement something by using a graph as a stream. The results may be quite interesting.

  • Drawing :

    • New drawing engines!
    • Allow new drawing constructs. All the typing and modularity parts are in places, just need to implement.
  • Make a pretty GUI, maybe a web one.

  • Add some benchmarks for drawing backends.

  • Implement a better error handling for the parser.

  • Work on the combinator approach for the front end.

  • Currently, the definition environment disappears after the front end and only post rules remain. On one hand, we can't let the environment, as we can't trust it when it's given independently by the user, on the other hand, this prevents completing optional arguments from the library side. A solution (maybe with some abstract types), may be interesting. Beware of leaking abstractions.

Dragon

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].