|
List Info
Thread: VCG visualization
|
|
| VCG visualization |

|
2008-04-24 13:07:56 |
Hello all,
I am on a Mac and I would like to know if anybody has any
suggestion
on a free software to visualize vcg files resulting from
bison output
or convert them to a bitmap file.
Cheers,
--
Paulo Jorge Matos - pocm at soton.ac.uk
http://www.perso
nal.soton.ac.uk/pocm
PhD Student ECS
University of Southampton, UK
Sponsor ECS runners - Action against Hunger:
http://w
ww.justgiving.com/ecsrunslikethewind
_______________________________________________
help-bison gnu.org http
://lists.gnu.org/mailman/listinfo/help-bison
|
|
| Re: VCG visualization |
  United Kingdom |
2008-04-24 13:14:28 |
Paulo,
> I am on a Mac and I would like to know if anybody has
any suggestion
> on a free software to visualize vcg files resulting
from bison output
> or convert them to a bitmap file.
I find graphviz useful for this kind of thing
http://www.graphviz.org/
--
Derek M. Jones tel: +44 (0)
1252 520 667
Knowledge Software Ltd mailto:derek knosof.co.uk
Applications Standards Conformance Testing http://www.knosof.co.uk
_______________________________________________
help-bison gnu.org http
://lists.gnu.org/mailman/listinfo/help-bison
|
|
| Re: VCG visualization |

|
2008-04-25 11:11:58 |
On Thu, Apr 24, 2008 at 7:14 PM, Derek M Jones <derek knosof.co.uk> wrote:
> Paulo,
>
>
>
> > I am on a Mac and I would like to know if anybody
has any suggestion
> > on a free software to visualize vcg files
resulting from bison output
> > or convert them to a bitmap file.
> >
>
> I find graphviz useful for this kind of thing
> http://www.graphviz.org/
>
Hello Derek,
I do know and use graphviz regularly for my graph work but I
thought
it only worked with the dot format. Is there a way to
convert VCG to
dot or is there a way to open VCG natively which I am not
aware of?
--
Paulo Jorge Matos - pocm at soton.ac.uk
http://www.perso
nal.soton.ac.uk/pocm
PhD Student ECS
University of Southampton, UK
Sponsor ECS runners - Action against Hunger:
http://w
ww.justgiving.com/ecsrunslikethewind
_______________________________________________
help-bison gnu.org http
://lists.gnu.org/mailman/listinfo/help-bison
|
|
| Re: VCG visualization |
  United Kingdom |
2008-04-26 06:27:41 |
Paulo,
>>> I am on a Mac and I would like to know if
anybody has any suggestion
>>> on a free software to visualize vcg files
resulting from bison output
>>> or convert them to a bitmap file.
>>>
>> I find graphviz useful for this kind of thing
>> http://www.graphviz.org/
>>
>
> Hello Derek,
>
> I do know and use graphviz regularly for my graph work
but I thought
> it only worked with the dot format. Is there a way to
convert VCG to
> dot or is there a way to open VCG natively which I am
not aware of?
It has always struck me that it ought to be possible to
write an
awk script to create a workable translation, but I have
never tried
to write one.
There do seem to be some tools out there (never tried any of
them)
http
://rw4.cs.uni-sb.de/~sander/html/gsvcg1.html
--
Derek M. Jones tel: +44 (0)
1252 520 667
Knowledge Software Ltd mailto:derek knosof.co.uk
Applications Standards Conformance Testing http://www.knosof.co.uk
_______________________________________________
help-bison gnu.org http
://lists.gnu.org/mailman/listinfo/help-bison
|
|
| Re: VCG visualization |
  United States |
2008-04-26 14:48:21 |
On Apr 26, 2008, at 7:27 AM, Derek M Jones wrote:
> Paulo,
>
>>>> I am on a Mac and I would like to know if
anybody has any
>>>> suggestion
>>>> on a free software to visualize vcg files
resulting from bison
>>>> output
>>>> or convert them to a bitmap file.
>>>>
>>> I find graphviz useful for this kind of thing
>>> http://www.graphviz.org/
>>>
>> Hello Derek,
>> I do know and use graphviz regularly for my graph
work but I thought
>> it only worked with the dot format. Is there a way
to convert VCG to
>> dot or is there a way to open VCG natively which I
am not aware of?
>
> It has always struck me that it ought to be possible to
write an
> awk script to create a workable translation, but I have
never tried
> to write one.
>
> There do seem to be some tools out there (never tried
any of them)
> http
://rw4.cs.uni-sb.de/~sander/html/gsvcg1.html
I found yaccviso http://lo-res.org/
~aaron/yaccviso/ . It looks
directly at the .y file and generates a dot file. It won't
compile
on your mac without a small change:
---------------------8<----------------------------------
-----------
--- malloc.h.orig 2008-04-26 15:43:45.000000000 -0400
+++ malloc.h 2008-04-26 15:44:00.000000000 -0400
 -26,7
+26,7 
* descr.:
*/
-#include <malloc.h>
+#include <stdlib.h>
#include "global.h"
typedef struct memmap memmap;
-----------------------8<--------------------------------
-----------
Aaron
_______________________________________________
help-bison gnu.org http
://lists.gnu.org/mailman/listinfo/help-bison
|
|
| Re: VCG visualization |

|
2008-04-26 16:33:13 |
The current CVS Bison will generate dot files instead of VCG
files. This
change was made some time ago (
http://lists.gnu.org/archive/html/bison-pat
ches/2006-10/msg00047.html), but
has not yet found it's way into a release version.
Satya
On Sat, Apr 26, 2008 at 12:48 PM, Aaron Jackson
<jackson msrce.howard.edu>
wrote:
>
> On Apr 26, 2008, at 7:27 AM, Derek M Jones wrote:
>
> Paulo,
> >
> > I am on a Mac and I would like to know if anybody
has any suggestion
> > > > > on a free software to visualize vcg
files resulting from bison
> > > > > output
> > > > > or convert them to a bitmap file.
> > > > >
> > > > > I find graphviz useful for this
kind of thing
> > > > http://www.graphviz.org/
> > > >
> > > > Hello Derek,
> > > I do know and use graphviz regularly for my
graph work but I thought
> > > it only worked with the dot format. Is there
a way to convert VCG to
> > > dot or is there a way to open VCG natively
which I am not aware of?
> > >
> >
> > It has always struck me that it ought to be
possible to write an
> > awk script to create a workable translation, but I
have never tried
> > to write one.
> >
> > There do seem to be some tools out there (never
tried any of them)
> > http:/
/rw4.cs.uni-sb.de/~sander/html/gsvcg1.html<http://rw4.cs.
uni-sb.de/%7Esander/html/gsvcg1.html>
> >
>
> I found yaccviso http://lo-res.org/~aaron/yaccviso
/<http://lo-res.org/%7Eaaron/yaccviso/>. It looks
directly at the .y file and generates a dot file. It won't
> compile on your mac without a small change:
>
>
---------------------8<----------------------------------
-----------
> --- malloc.h.orig 2008-04-26 15:43:45.000000000
-0400
> +++ malloc.h 2008-04-26 15:44:00.000000000 -0400
>  -26,7 +26,7 
> * descr.:
> */
>
> -#include <malloc.h>
> +#include <stdlib.h>
> #include "global.h"
>
> typedef struct memmap memmap;
>
-----------------------8<--------------------------------
-----------
>
> Aaron
>
>
>
> _______________________________________________
> help-bison gnu.org http
://lists.gnu.org/mailman/listinfo/help-bison
>
_______________________________________________
help-bison gnu.org http
://lists.gnu.org/mailman/listinfo/help-bison
|
|
| Re: VCG visualization |

|
2008-04-29 05:20:44 |
On Sat, Apr 26, 2008 at 10:33 PM, Satya <satyakiran gmail.com> wrote:
> The current CVS Bison will generate dot files instead
of VCG files. This
> change was made some time ago
> (http://lists.gnu.org/archive/html/bison-pat
ches/2006-10/msg00047.html), but
> has not yet found it's way into a release version.
>
Thanks a lot... this is definitely a nice feature. dot is
more
mainstream than vcg.
> Satya
>
>
>
> On Sat, Apr 26, 2008 at 12:48 PM, Aaron Jackson
<jackson msrce.howard.edu>
> wrote:
> >
> >
> >
> >
> >
> > On Apr 26, 2008, at 7:27 AM, Derek M Jones wrote:
> >
> >
> > > Paulo,
> > >
> > >
> > > >
> > > > >
> > > > > > I am on a Mac and I would like
to know if anybody has any
> suggestion
> > > > > > on a free software to
visualize vcg files resulting from bison
> output
> > > > > > or convert them to a bitmap
file.
> > > > > >
> > > > > >
> > > > > I find graphviz useful for this
kind of thing
> > > > > http://www.graphviz.org/
> > > > >
> > > > >
> > > > Hello Derek,
> > > > I do know and use graphviz regularly for
my graph work but I thought
> > > > it only worked with the dot format. Is
there a way to convert VCG to
> > > > dot or is there a way to open VCG
natively which I am not aware of?
> > > >
> > >
> > > It has always struck me that it ought to be
possible to write an
> > > awk script to create a workable translation,
but I have never tried
> > > to write one.
> > >
> > > There do seem to be some tools out there
(never tried any of them)
> > > http
://rw4.cs.uni-sb.de/~sander/html/gsvcg1.html
> > >
> >
> > I found yaccviso http://lo-res.org/
~aaron/yaccviso/ . It looks directly
> at the .y file and generates a dot file. It won't
compile on your mac
> without a small change:
> >
> >
---------------------8<----------------------------------
-----------
> > --- malloc.h.orig 2008-04-26
15:43:45.000000000 -0400
> > +++ malloc.h 2008-04-26 15:44:00.000000000
-0400
> >  -26,7 +26,7 
> > * descr.:
> > */
> >
> > -#include <malloc.h>
> > +#include <stdlib.h>
> > #include "global.h"
> >
> > typedef struct memmap memmap;
> >
-----------------------8<--------------------------------
-----------
> >
> > Aaron
> >
> >
> >
> >
> >
> >
> > _______________________________________________
> > help-bison gnu.org http
://lists.gnu.org/mailman/listinfo/help-bison
> >
>
>
--
Paulo Jorge Matos - pocm at soton.ac.uk
http://www.perso
nal.soton.ac.uk/pocm
PhD Student ECS
University of Southampton, UK
Sponsor ECS runners - Action against Hunger:
http://w
ww.justgiving.com/ecsrunslikethewind
_______________________________________________
help-bison gnu.org http
://lists.gnu.org/mailman/listinfo/help-bison
|
|
[1-7]
|
|