Jakob Schneider

Results 250 comments of Jakob Schneider

- I like `getter`, `setter`, `constructor`. It's both more visible and we get to keep the std lib names for `get`, `set`. - I think we should keep `query ......

Should we use the `Path` type from https://github.com/flix/flix/pull/7191 ?

> Once this is done, lets do one with paths where the edges have distances. Then you need paths to be `Path(List[a], Int32)`. Should the shortest Dist be updated with...

Inspired by Elm architecture.

Useful links: https://package.elm-lang.org/packages/elm/html/latest/ https://package.elm-lang.org/packages/elm/virtual-dom/latest/ https://elm-lang.org/news/blazing-fast-html-round-two https://elm-lang.org/news/blazing-fast-html (two years older post than the one above)

@magnus-madsen could you assign me to this?

Just a dump of functions... (note to self) ```scala mod Graph { use Path.Path; enum Path { case Path(List[Int32]) } instance Eq[Path] { pub def eq(x: Path, y: Path): Bool...

@magnus-madsen maybe you should take a look at what I have so far. I have a feeling that the main loop `fordFulkerson` can be prettier by using datalog. Other than...

Apart from restructuring and bug fixing, what do you think of this? I'm not sure it terminates currently.

The algorithm works now. I will move it to an example file, but feedback on style etc. would be nice.