Giter Site home page Giter Site logo

propensive / acyclicity Goto Github PK

View Code? Open in Web Editor NEW
9.0 4.0 0.0 6.23 MB

Monadic directed acyclic graph datastructures for Scala

Home Page: https://propensive.com/acyclicity/

License: Apache License 2.0

Scala 89.49% Shell 10.51%
dag graph functional-programming scala outgoing-edges subgraph immutable

acyclicity's Introduction

GitHub Workflow

Acyclicity

Monadic directed acyclic graph datastructures

Acyclicity provides a single data structure, Dag[T], representing a graph of nodes of type T, with monadic operations and several other utility methods, plus the means to generate DOT for input to GraphViz.

Features

  • provides a simple immutable monadic implementation of a DAG
  • implements map, flatMap and filter for Dags
  • can deduce a partial order on a graph
  • generates Dot instances representing a DOT abstract syntax tree
  • serializes Dot instances to Strings, which can be rendered by GraphViz
  • can find the transitive closure, transitive reduction and inverse of a graph
  • methods for addition and subtraction of graph nodes

Availability Plan

Acyclicity has not yet been published. The medium-term plan is to build Acyclicity with Fury and to publish it as a source build on Vent. This will enable ordinary users to write and build software which depends on Acyclicity.

Subsequently, Acyclicity will also be made available as a binary in the Maven Central repository. This will enable users of other build tools to use it.

For the overeager, curious and impatient, see building.

Getting Started

Acyclicity provides a monadic representation of a directed, acyclic graph (DAG) called Dag, and support for generating DOT files which can be rendered with tools such as GraphViz.

All Acyclicity terms and types are defined in the acyclicity package.

import acyclicity.*

The Dag[T] type represents a mapping from nodes of type T to zero, one or many other nodes in the graph, and can be constructed by providing the mapping from each node to its Set of dependent nodes, or by calling,

val nodes: Set[Int] = Set(2, 3, 4, 5, 10, 15, 30)
def fn(n: Int): Set[Int] = (0 until n).filter(n%_ == 0).to(Set)
val dag = Dag(nodes)(fn)

where nodes is a Set of nodes, and fn is a function from each node to its dependencies.

For example,

val factors = Dag(
  30 -> Set(2, 3, 4, 5, 10, 15),
  15 -> Set(5, 3),
  10 -> Set(5, 2),
  5 -> Set(),
  3 -> Set(),
  2 -> Set()
)

Monadic Operations

A Dag[T] may be mapped to a Dag[S] with a function T => S, like so:

val dag2 = factors.map(_*10)

Care should be taken when more than one node in the domain maps to a single node in the range, but both incoming and outgoing edges will be merged in such cases.

It's also possible to flatMap with a function T => Dag[S]. This will replace every node of type T with a subgraph, Dag[S] with incoming edges attached to all source nodes of the subgraph, and pre-existing outgoing edges attached to all destination nodes of the subgraph.

A Dag[T] may also be filtered with a predicate, T => Boolean. The removal of a node during filtering will reattach every incoming edge to every outgoing edge of that node.

Other Operations

The method Dag#reduction will calculate the transitive reduction of the graph, removing any direct edge between two nodes when transitive edges exist between those nodes.

The dual of this operation is the transitive closure, which adds direct edges between each pair of nodes between which a transitive path exists. This is available with the Dag#closure method.

A list of nodes will be returned in topologically-sorted order by calling Dag#sorted.

DOT output

An extension method, dot, on Dags of Texts will produce a Dot instance, an AST of the DOT code necessary to render a graph. This can then be serialized to a Text with the serialize method.

Typical usage would be to first convert a Dag[T] to a Dag[Text], then produce the Dot instance and serialize it, for example:

import spectacular.show

@main
def graph() = println(dag.map(_.show).dot.serialize)

Limitations

This library is incomplete, inadequately tested and subject to further development, and is recommended to be used by developers who do not mind examining the source code to diagnose unexpected behavior.

Status

Acyclicity is classified as fledgling. For reference, Scala One projects are categorized into one of the following five stability levels:

  • embryonic: for experimental or demonstrative purposes only, without any guarantees of longevity
  • fledgling: of proven utility, seeking contributions, but liable to significant redesigns
  • maturescent: major design decisions broady settled, seeking probatory adoption and refinement
  • dependable: production-ready, subject to controlled ongoing maintenance and enhancement; tagged as version 1.0.0 or later
  • adamantine: proven, reliable and production-ready, with no further breaking changes ever anticipated

Projects at any stability level, even embryonic projects, can still be used, as long as caution is taken to avoid a mismatch between the project's stability level and the required stability and maintainability of your own project.

Acyclicity is designed to be small. Its entire source code currently consists of 243 lines of code.

Building

Acyclicity will ultimately be built by Fury, when it is published. In the meantime, two possibilities are offered, however they are acknowledged to be fragile, inadequately tested, and unsuitable for anything more than experimentation. They are provided only for the necessity of providing some answer to the question, "how can I try Acyclicity?".

  1. Copy the sources into your own project

    Read the fury file in the repository root to understand Acyclicity's build structure, dependencies and source location; the file format should be short and quite intuitive. Copy the sources into a source directory in your own project, then repeat (recursively) for each of the dependencies.

    The sources are compiled against the latest nightly release of Scala 3. There should be no problem to compile the project together with all of its dependencies in a single compilation.

  2. Build with Wrath

    Wrath is a bootstrapping script for building Acyclicity and other projects in the absence of a fully-featured build tool. It is designed to read the fury file in the project directory, and produce a collection of JAR files which can be added to a classpath, by compiling the project and all of its dependencies, including the Scala compiler itself.

    Download the latest version of wrath, make it executable, and add it to your path, for example by copying it to /usr/local/bin/.

    Clone this repository inside an empty directory, so that the build can safely make clones of repositories it depends on as peers of acyclicity. Run wrath -F in the repository root. This will download and compile the latest version of Scala, as well as all of Acyclicity's dependencies.

    If the build was successful, the compiled JAR files can be found in the .wrath/dist directory.

Contributing

Contributors to Acyclicity are welcome and encouraged. New contributors may like to look for issues marked beginner.

We suggest that all contributors read the Contributing Guide to make the process of contributing to Acyclicity easier.

Please do not contact project maintainers privately with questions unless there is a good reason to keep them private. While it can be tempting to repsond to such questions, private answers cannot be shared with a wider audience, and it can result in duplication of effort.

Author

Acyclicity was designed and developed by Jon Pretty, and commercial support and training on all aspects of Scala 3 is available from Propensive OÜ.

Name

Acyclicity takes its name from the graphs it represents, which must not contain cycles.

In general, Scala One project names are always chosen with some rationale, however it is usually frivolous. Each name is chosen for more for its uniqueness and intrigue than its concision or catchiness, and there is no bias towards names with positive or "nice" meanings—since many of the libraries perform some quite unpleasant tasks.

Names should be English words, though many are obscure or archaic, and it should be noted how willingly English adopts foreign words. Names are generally of Greek or Latin origin, and have often arrived in English via a romance language.

Logo

The logo shows a single dot, alluding to the DOT language.

License

Acyclicity is copyright © 2024 Jon Pretty & Propensive OÜ, and is made available under the Apache 2.0 License.

acyclicity's People

Contributors

propensive avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

acyclicity's Issues

Don't use `Vector`

The code written with Vector can be more performant if rewritten to use Lists.

Consider alternative representation

It would be interesting to consider the implications of keeping the DAG in a linearized representation at all times. This would essentially be a linked list or array, where each node at position n would include integer backreferences to nodes in the range 0 - (n - 1). This could be enforced with integer literal singleton types and various compiletime constraints. There would likely be several tradeoffs for different operations on the DAG.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.