Re: [fonc] Evolutionary Debugging :.

2014-01-09 Thread Robert Feldt
I don't think I remember the exploding myself strategy from Karl Sims videos: http://www.youtube.com/watch?v=JBgG_VSP7f8 Do you remember where you saw that, Chris? Cheers, Robert Feldt On Thu, Jan 9, 2014 at 4:29 PM, Chris Warburton chriswa...@googlemail.comwrote: Pavel Bažant pbaz

Re: [fonc] Evolutionary Debugging :.

2014-01-09 Thread Robert Feldt
, 2014 at 3:38 PM, Robert Feldt robert.fe...@gmail.comwrote: I don't think I remember the exploding myself strategy from Karl Sims videos: http://www.youtube.com/watch?v=JBgG_VSP7f8 Do you remember where you saw that, Chris? Cheers, Robert Feldt On Thu, Jan 9, 2014 at 4:29 PM, Chris

Re: [fonc] A META-II for C that fits in a half a sheet of paper

2012-11-24 Thread Robert Feldt
just an artefact of basing it on Long's version. Ruby does not require a certain order so can be reformatted to be top-down. Found at: https://github.com/robertfeldt/meta_compile Cheers, Robert Feldt Diff to Long's support.h : 103c103 if (('A' = source[pos] source[pos

Re: [fonc] Lessons from COLA

2011-10-03 Thread Robert Feldt
/10/2011 21:40, Casey Ransberger wrote: Have you looked at Maru? It's likely(?) what you're after. Or was. ___ fonc mailing list fonc@vpri.org http://vpri.org/mailman/listinfo/fonc -- Best regards, /Robert Feldt -- Tech. Dr. (PhD), Assoc

Re: [fonc] Figuring out what you all want to hear

2010-03-11 Thread Robert Feldt
-codecs.com/real_Alternative_download.htm MPlayer (the video swiss army knife, for Linux/Windows/Mac):    http://www.mplayerhq.hu/ Good luck! :) ___ fonc mailing list fonc@vpri.org http://vpri.org/mailman/listinfo/fonc -- Best regards, /Robert Feldt

Re: [fonc] my two cents

2010-03-03 Thread Robert Feldt
of a thing/system it considers important after disconsidering the parts which it consider irrelevant. Best regards, /Robert Feldt -- Tech. Dr. (PhD), Assoc. Professor (Senior Lecturer) in Software Engineering Chalmers, Software Engineering and Technology Blekinge Institute of Technology, Software

Re: [fonc] working on a C grammar

2008-05-01 Thread Robert Feldt
Hi Michael, Check out Rats source distribution ( http://www.cs.nyu.edu/rgrimm/xtc/xtc-core.zip ) in xtc/src/xtc/lang/C.rats which is a complete C grammar. It might use Rats-specific constructs and the license is GPL2 so maybe not liberal enough. Regards, Robert Feldt On Thu, May 1, 2008 at 3

Re: [fonc] Re: Benefits of OMeta not being a generator?

2007-12-12 Thread Robert Feldt
On Dec 11, 2007 11:45 PM, Alessandro Warth [EMAIL PROTECTED] wrote: Hello Robert, Hi Allessandro, Earlier versions of OMeta used to pass production arguments on the program stack. While this approach was efficient, it also made it really difficult for the implementation to support

Re: [fonc] Re: Benefits of OMeta not being a generator?

2007-12-12 Thread Robert Feldt
Have you looked at Katahdin? He made some interesting choices there to support different types of recursion and precedence even while maintaining a (mostly; he goes for longest-match or instead of prioritized choice) PEG base. I haven't read your supporting recursion in peg paper yet but