[Caml-list] AISC'10: Deadline Extension to March 12, 2010 (Abstracts: March 9, 2010)

2010-02-23 Thread Serge Autexier
[Apologies for possible multiple postings.] CALL FOR PAPERS AISC 2010 - 10th International Conference on ARTIFICIAL INTELLIGENCE AND SYMBOLIC COMPUTATION Theory, Implementations and Applications http://cicm2010.c

[Caml-list] ocamldoc external tags

2010-02-23 Thread Michael Ekstrand
Doxygen, a documentation generator for C, C++, etc., has the useful feature that it can use a tags file combined with a canonical base URL to resolve links to documentation for other libraries. Suppose library B uses library A; when building documentation for B, Doxygen can use the tags and URL fo

[Caml-list] Re: How to call OCaml from C++

2010-02-23 Thread Michael Ekstrand
On 02/22/2010 09:11 PM, Jianzhou Zhao wrote: > Hi, > > Does anyone call OCaml code from C++? > C can call OCaml with the OCaml foreign interfaces. > But when we call OCaml from C++, we need to consider ‘extern C' > stuff, like what we do when call C from C++, because the bridge > functions between

[Caml-list] CfP - 4th ACM International Conference on Distributed Event-Based Systems (DEBS) - 1 WEEK DEADLINE EXTENSION

2010-02-23 Thread Leonardo Querzoni
(Apologize if you receive multiple copies of this message) ---EXTENDED Submission deadline for Research/Industry papers--- --    Call for Contributions - DEBS 2010 ==

[Caml-list] Security systems (2/23/2010)

2010-02-23 Thread Robert Sexton
Hello, I represent a company called SPS Solutions, a company that does what's known as advanced search engine placement. We reach a Network of nearly 36,000,000 people who are largely US based. Our Network is entirely opt-in, and the users on our Network allow us to present them with a prefe

Re: [Caml-list] graph of function dependances

2010-02-23 Thread Grégoire Seux
Thank you, it seems to be exactly what i need :-) On Tue, Feb 23, 2010 at 19:23, Maxence Guesdon wrote: > On Tue, 23 Feb 2010 19:02:32 +0530 > Grégoire Seux wrote: > > > hello ! > > Hello, > > > i am wondering if there exists a way to get a graphic visualiation of the > > dependances between fun

Re: [Caml-list] graph of function dependances

2010-02-23 Thread Maxence Guesdon
On Tue, 23 Feb 2010 19:02:32 +0530 Grégoire Seux wrote: > hello ! Hello, > i am wondering if there exists a way to get a graphic visualiation of the > dependances between functions defined in an ocaml file. > > For instance: > > let f x= x+1 > > let g x= f x -1 > > > > let h x y = g x + (

[Caml-list] graph of function dependances

2010-02-23 Thread Grégoire Seux
hello ! i am wondering if there exists a way to get a graphic visualiation of the dependances between functions defined in an ocaml file. For instance: let f x= x+1 let g x= f x -1 > let h x y = g x + (f x) should displayed that h relies on f and g definition. Maybe this not a pure ocaml-