Skip to content

Releases: graninas/cpp_stm_free

Optimization

24 Jul 16:22
Compare
Choose a tag to compare

'Stupid GUID' replaced by int.
Boost x2 in single threaded, x10 in multithreaded.

New engine & combinators

23 Jul 21:03
Compare
Choose a tag to compare
  • New engine: Church-encoded Free monad instead of Free monad. Both engines are available, but Church is now main.
  • New engine: optimization. Quadratic complexity of binding is eliminated. Now, it's linear.
  • New project structure.
  • std::optional-aware STML combinators.
  • More new combinators.
  • Several small optimizations and tunings.

Interface and structure improvements

20 May 08:20
Compare
Choose a tag to compare
  • License changed to BSD 3.
  • Removed dependency from cpp_functional_core.
  • Code structure improved and cleaned up.
  • Unused stuff removed.
  • Combinators interface updated.
  • Small fixes and improvements.

Bugfix release

18 May 19:29
Compare
Choose a tag to compare
  • Concurrency bug fixed. Now, only modified TVars would be merged on commit.
  • Tiny performance improvements.

Cleanup release

18 May 19:36
Compare
Choose a tag to compare
  • Code cleanups
  • New combinators
  • Tiny behavior improvements

STM: initial version

18 May 19:34
Compare
Choose a tag to compare

First working version of STM with free monad.

  • Monadic STM: core mechanics
  • Combinators
  • Simple Context