Issue 1117 in moose-technology: Cleanup in Moose-Algos-Graph + add GraphReducer + add TopologicalSorting

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
8 messages Options
Reply | Threaded
Open this post in threaded view
|

Issue 1117 in moose-technology: Cleanup in Moose-Algos-Graph + add GraphReducer + add TopologicalSorting

moose-technology
Status: New
Owner: ----
Labels: Type-Defect Priority-Medium

New issue 1117 by [hidden email]: Cleanup in Moose-Algos-Graph + add  
GraphReducer + add TopologicalSorting
https://code.google.com/p/moose-technology/issues/detail?id=1117

Cleanup in Moose-Algos-Graph


--
You received this message because this project is configured to send all  
issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings
_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: Issue 1117 in moose-technology: Cleanup in Moose-Algos-Graph + add GraphReducer + add TopologicalSorting

moose-technology

Comment #1 on issue 1117 by [hidden email]: Cleanup in  
Moose-Algos-Graph + add GraphReducer + add TopologicalSorting
https://code.google.com/p/moose-technology/issues/detail?id=1117

Cleanup in Moose-Algos-Graph
- add comments
- remove useless traits
- remove duplicated code
- introduce new generic nodes: MalNodeWithNext and  
MalNodeWithPreviousAndNext

Add 2 alogorithms:
- Graph reducer: obtain a graph without circuits from a graph with circuits  
(circuits merged in one node)
- Topological sorting: well known sort algorithm for acyclic graphes.

--
You received this message because this project is configured to send all  
issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings
_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: Issue 1117 in moose-technology: Cleanup in Moose-Algos-Graph + add GraphReducer + add TopologicalSorting

moose-technology

Comment #2 on issue 1117 by [hidden email]: Cleanup in  
Moose-Algos-Graph + add GraphReducer + add TopologicalSorting
https://code.google.com/p/moose-technology/issues/detail?id=1117

Thanks a lot for looking into this part of Moose.

It seems that in the meantime, the tests are red. Could you check if it is  
related to this issue?

--
You received this message because this project is configured to send all  
issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings
_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: Issue 1117 in moose-technology: Cleanup in Moose-Algos-Graph + add GraphReducer + add TopologicalSorting

moose-technology

Comment #3 on issue 1117 by [hidden email]: Cleanup in  
Moose-Algos-Graph + add GraphReducer + add TopologicalSorting
https://code.google.com/p/moose-technology/issues/detail?id=1117

of course. It is strange, it looks like a new class was not commited.
I check that now

--
You received this message because this project is configured to send all  
issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings
_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: Issue 1117 in moose-technology: Cleanup in Moose-Algos-Graph + add GraphReducer + add TopologicalSorting

moose-technology

Comment #4 on issue 1117 by [hidden email]: Cleanup in  
Moose-Algos-Graph + add GraphReducer + add TopologicalSorting
https://code.google.com/p/moose-technology/issues/detail?id=1117

ok, there was an unmerged version. The latest version I published was not  
loaded.
I did the merge and updated the code accordingly.

There is still a problem related to the removal of the trait MalTNodeNode.  
I though that I found all users of it but there is at least one remaining,  
preventing the loader to load some classes.

--
You received this message because this project is configured to send all  
issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings
_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: Issue 1117 in moose-technology: Cleanup in Moose-Algos-Graph + add GraphReducer + add TopologicalSorting

moose-technology

Comment #5 on issue 1117 by [hidden email]: Cleanup in  
Moose-Algos-Graph + add GraphReducer + add TopologicalSorting
https://code.google.com/p/moose-technology/issues/detail?id=1117

In a previous image, MalTNodeNode users gives:
an IdentitySet(FAMIXGraphNode MalSndNode MalTraverserGraphNode MalHitsNode  
MalNextNode).
All these classes have been updated and do not use anymore the trait.

--
You received this message because this project is configured to send all  
issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings
_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: Issue 1117 in moose-technology: Cleanup in Moose-Algos-Graph + add GraphReducer + add TopologicalSorting

moose-technology

Comment #6 on issue 1117 by [hidden email]: Cleanup in  
Moose-Algos-Graph + add GraphReducer + add TopologicalSorting
https://code.google.com/p/moose-technology/issues/detail?id=1117

Thanks again. Still, the moose build is broken due to a Trait. Could you  
look at it?
https://ci.inria.fr/moose/job/moose-5.1/

--
You received this message because this project is configured to send all  
issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings
_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: Issue 1117 in moose-technology: Cleanup in Moose-Algos-Graph + add GraphReducer + add TopologicalSorting

moose-technology

Comment #7 on issue 1117 by [hidden email]: Cleanup in  
Moose-Algos-Graph + add GraphReducer + add TopologicalSorting
https://code.google.com/p/moose-technology/issues/detail?id=1117

now fixed!
I got trapped by Monticello branch mechanism. My last publication of a  
package was not loaded for the CI tests.

--
You received this message because this project is configured to send all  
issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings
_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev