These are F# solutions of Ninety-Nine Haskell Problems which are themselves translations of Ninety-Nine Lisp Problems and Ninety-Nine Prolog Problems. The solutions are hidden so you can try to solve them yourself.
10 people like thisPosted: 12 years ago by Cesar Mendoza
A small DSL for graph building by combining weighted paths. It's just a map of edges to weights under the hood, so no need to worry about duplication causing problems. This is part of a larger project I'm calling edgy.
2 people like thisPosted: 12 years ago by Rick Minerich
How you can programmatically use GraphViz from F#.
8 people like thisPosted: 7 years ago by Tuomas Hietanen
A small DSL for graph building by combining paths. It's just a set of edges under the hood, so no need to worry about duplication causing problems. This is part of a larger project I'm calling edgy.
9 people like thisPosted: 12 years ago by Rick Minerich
Bron–Kerbosch algorithm is an algorithm for finding maximal cliques in an undirected graph http://en.wikipedia.org/wiki/Bron%E2%80%93Kerbosch_algorithm
1 people like thisPosted: 11 years ago by Lakret
Push-relabel algorithm for Max Flow problems in flow graphs. (Does not check if graph has improper back edges)
3 people like thisPosted: 2 years ago by Faisal Waris