I'm trying to extend a Gelly Graph into a Graph with edges with Tuple5 instead of Tuple 3. This is not possible by extending a gelly Graph since the constructor is private. I went ahead and made my own Edge class that extends Tuple5 instead of Tuple 3 but i'm unsure if i can easily make it into a gelly Graph at this point since the API points to tuple3 or tuple2 for edge sets.
The question is if this can be done more easily or if it's possible at all what i want to do