Skip to content

Latest commit

 

History

History
60 lines (48 loc) · 1.36 KB

README.md

File metadata and controls

60 lines (48 loc) · 1.36 KB

ac-library-d

License: CC0-1.0

🚧 WIP 🚧

An ac-library implementation in D language.

Bundled files are here :)

  • Data Structures
    • fenwicktree
    • segtree
    • lazysegtree
    • string
  • Math
    • math
    • convolution
    • modint
  • Graphs
    • dsu
    • maxflow
    • mincostflow
    • scc
    • twosat
  • Dependencies
    • internal bit
    • internal math
    • [ ] internal queue (unnecessary)
    • internal scc
    • [ ] internal type traits (unnecessary)
    • internal array (not in ac-library)

Commands

Bundle all files:

$ ./bundle src/acl/all.d > output.d

Bundle files dependent on {name}.d:

$ ./bundle src/acl/{name}.d > output.d

Browse docs for ac-library:

$ make browse-docs

Format source code:

$ make format

Links