Search found 4 matches
- Thu May 19, 2011 9:57 am
- Forum: Common Lisp
- Topic: Newbie: How to add my own helper functions permantly?
- Replies: 6
- Views: 8429
Re: Newbie: How to add my own helper functions permantly?
Because I also have a similar question, if we have the four files: main.lisp, file1.lisp, file2.lisp, util.lisp; file1 and file2 depend on util; main depends on file1 and file2. Is it correct to load in both file1 and file2 the util.lisp, and then just load in main the 1 & 2?
- Fri May 13, 2011 12:06 pm
- Forum: Common Lisp
- Topic: Algorithmic differentiation
- Replies: 4
- Views: 5566
Re: Algorithmic differentiation
Thank you very much for the answers! I suppose I have to study more...
- Fri May 13, 2011 10:40 am
- Forum: Common Lisp
- Topic: Algorithmic differentiation
- Replies: 4
- Views: 5566
Re: Algorithmic differentiation
Thank you! That solved the problem. However, I get a continuable Error: "DEFUN/DEFMACRO(EXPT): #<PACKAGE COMMON-LISP> is locked" which leads to the following warnings: WARNING: DEFUN/DEFMACRO: redefining function EXPT in /Users/dp/work/fem/AD.lisp, was defined in C WARNING: |two-arg-EXPT| ...
- Fri May 13, 2011 10:01 am
- Forum: Common Lisp
- Topic: Algorithmic differentiation
- Replies: 4
- Views: 5566
Algorithmic differentiation
Hallo, algorithmic differentiation differs from symbolic differentiation as well as numerical. In practice, it takes existing code (i.e., it does not do symbolic math in a new language) and computes the derivative of that function. As you may suspect Lisp is very suitable for AD. So, I'm trying to i...