From eric.jones22 at us.army.mil Sun Mar 23 05:59:28 2008 From: eric.jones22 at us.army.mil (Jones, Eric SPC MIL USA FORSCOM) Date: Sun, 23 Mar 2008 10:29:28 +0430 Subject: [cinline-announce] port Message-ID: <1206251969.6608.3.camel@xplo43-23-system> I understand that Elephant is used for caching of C code. Perhaps this functionality could be ported to Allegrocache. From eric.jones22 at us.army.mil Sat Mar 29 16:11:19 2008 From: eric.jones22 at us.army.mil (Jones, Eric SPC MIL USA FORSCOM) Date: Sat, 29 Mar 2008 20:41:19 +0430 Subject: [cinline-announce] atan2 Message-ID: <1206807079.6119.7.camel@xplo43-23-system> Hello, Common lisp's atan2 is atan called with the optional arg To implement atan2 in math.lisp is trivial: (defun |atan2| (y x) (atan (conv y) (conv x)))