Graph simplification????
From: moon (only_forme4_at_hotmail.com)
Date: 07/05/04
- Next message: Jesse F. Hughes: "Re: Mathematicians and scientists become wealthy and rule the world"
- Previous message: Jaco Versfeld: "Re: How to find the inverse polynomial of the CRC generator polynomial"
- Messages sorted by: [ date ] [ thread ]
Date: 5 Jul 2004 01:46:39 -0700
I am in the process of writing a program that simplifies a directed
graph into a sequence of serial boxes. I really don't which is the
wright algorithm to use for such a program. I found a lot of
algorithms to construct the graph and traverse it but not to simplify
it. I think that there a lot of application based on such algorithm
such as circuit analysis, system reliability, etc…
So to describe what the algorithm should do, here the details:
# Graph description:
* You have a set of nodes.
* They are connected by directed edges (only one direction)
* Two connected nodes are connected by only one edge.
# Parallel definition (I hope that I will be clear enough in my
description =) :
* If a node has two or more edges directed outward of it, then the
paths starts from these nodes are considered parallel and should be
grouped in one box.
# Serial definition
* If a node has one edge directed outward of it, then the node next to
it is considered serially connected.
A===>B===>E====>G====
|| || /\ ||
|| || // ||
|| V // V
||===>C===>D====>F==>H
This is an example, who can simplify it for me!!!!!!! Along with the
algorithim??? (When I tried to solve it, I found out that ‘D' is part
of two parallel boxes, which confused me , and I did not how to solve
the problem! I think that another rule should be specified in the
description of the system???? Please don't hesitate if you also know
what is the missed rule!!!
I hope that I was really clear in my description, and I hope really to
hear from you as soon as possible.
Yours,
- Next message: Jesse F. Hughes: "Re: Mathematicians and scientists become wealthy and rule the world"
- Previous message: Jaco Versfeld: "Re: How to find the inverse polynomial of the CRC generator polynomial"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|