SBCL development on Windows, including CFFI
I have been asked to automate the operation of a Windows (WinForms) application, performing some fairly complicated statistical analysis along the way.
SBCL development on Windows, including CFFI
I have been asked to automate the operation of a Windows (WinForms) application, performing some fairly complicated statistical analysis along the way.
SBCL development on Windows, including CFFI
I have been asked to automate the operation of a Windows (WinForms) application, performing some fairly complicated statistical analysis along the way.
SBCL development on Windows, including CFFI
I have been asked to automate the operation of a Windows (WinForms) application, performing some fairly complicated statistical analysis along the way.
DEFGENERIC + DEFMETHOD vs. DEFUN for implementation?
I have file R
and two files A
, B
.
How to Programmatically and Portably Shadow a Symbol from a Macro?
This one is a little bit embarrassing, but I have been stuck with this one way longer than I want to admit.
How can EVENP or ODDP used in a :KEY be compared to integers?
On the page of the SEARCH function in the Specifications, one can read the example:
How did I force the loop macro not to iterate over its input list?
I wrote the code below (INFIX-LINKING-LEAFS – the last function – is the first caller with the LOOP). I’m sorry if it is too much code (five functions) for the purpose of answering my question. I thought, the whole context might be necessary to identify my fallacy.
create CL function that returns arbitrary size array
I’m new to LISP and I am misunderstanding something basic. I want the following function to create an NxN array where N is passed to the function by the user during function call, for example (gson 3). Trying to compile this function with SBCL gives the error “bad array dimensions (N N)”. I don’t understand why this doesn’t work.
How does a chess engine decide what move to make?
I’m writing a simple chess engine in LISP. I actually know how the engine decide the move, it evaluates and reads some opening books. But that’s not what i mean. This is my design.