Giter Club home page Giter Club logo

jgraphl's People

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

Forkers

trs123

jgraphl's Issues

WeightedEdge abstraction

Java seems not to have an abstraction of numbers or arithmetic values.

I first thought that the class Numbers would fill this role and designed a WeightedEdge<V, W extends Number> like this

public interface WeightedEdge<V, W extends Number> {
    W weight();
}

but this does not allow to formulate calculations with the weights, i.e. something like

public interface WeightedPath<V, E extends WeightedEdge<V, W>, W extends Number> 
    extends Path<V, E> {

    default W distance() {
        // Problem: Number.plus() does not exist
        return edges().reduce((sum, edge) -> sum.plus(edge.weight())); 
    }
}

So do we have to declare WeightedEdge to always use double for weights??

publish javadoc to github

Public javadoc pages should be available early in development. Requirements:

  • the main documentation referenced in README.md
  • hosted by github
  • easy to build and deploy

TecD Graph Concepts

Having the first working version of the graph concepts, we should rethink the interface hierarchy. The concepts of the Boost Graph Library should be our guideline. Should we also introduce these interfaces?

  • IncidenceGraph and/or AdjacencyGraph
  • BidirectionalGraph
  • AdjacencyMatrix
  • VertexListGraph, EdgeListGraph

Visualize graphs with graphviz

To have the feature to visualize graphs early in development would be nice. Which library should we use? RGL uses graphviz which is not Java based and a bit old. Is there a better choice?

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.