I'm making a classroom excercise in LISP, and I'm getting this error

CG-USER(286): 
Error: Invalid EXCL::PREDICATE argument:
       #<Vector @ #x20fd488a>
[condition type: SIMPLE-ERROR]

Could you tell me what this is supposed to mean? I'll paste the code giving the error, but it's long and ugly.

It should find the stations following the given one in Madrid's metro network, being ESTACION the name of the station, CAMBIO-ESTACION a list describing short transfers (format: (L01 Sol L02 Tribunal)), VIAS a list describing the order of the stations in the metro lines (format (l01 Sol Opera 1.01)). There are some stations broken (the ones in AVERIADAS) and I have to finde the closes stations (in PROFUNDIDAD-VECINOS jumps).

Obviously, I don't expect you to debug my code (it's a lot of ugly code to read), but it would be great if anyone could tell me what is that error supposed to mean. Thanks.

Here is the code:

This is the execution with the error:

CG-USER(286): (estaciones-cercanas-a 'Noviciado *vias* *cambio-estacion* 2 '(Sol Callao Noviciado Santo_Domingo PLAZA_DE_ESPAÑA SAN_BERNARDO RETIRO))
Error: Invalid EXCL::PREDICATE argument:
       #<Vector @ #x20fd488a>
[condition type: SIMPLE-ERROR]

And this is a successful execution:

CG-USER(288): (estaciones-cercanas-a 'Noviciado *vias* *cambio-estacion*)
(SANTO_DOMINGO SAN_BERNARDO PLAZA_DE_ESPAÑA)
link|improve this question

70% accept rate
feedback

2 Answers

up vote 2 down vote accepted

You would need to paste a backtrace.

But as I read it, the error basically says that where Lisp expected a predicate, it got some kind vector data.

Typically this would be because some arguments are in the wrong position.

link|improve this answer
The backtraces I get are really really long, if I can't fix it I will try to get a short one. Your explanation seems to make sense, I'll check that. Thanks. – jesusiniesta Dec 19 '10 at 19:22
Fixed! Thanks a lot! It was that mistake in a previous function. – jesusiniesta Dec 19 '10 at 19:25
feedback

First function, as the else branch of the if expression, you have

        (remove-duplicates
          (remove-if #(lambda(x)(eq x estacion))
          ...

I suspect you want

        (remove-duplicates
          (remove-if #'(lambda(x)(eq x estacion))
          ...

I.e., a single quote is missing.

link|improve this answer
I don't know if it is relevant, but fixed. Thanks! – jesusiniesta Dec 19 '10 at 19:19
right, that's an error. Without the quote we get a vector. Good catch. – Rainer Joswig Dec 19 '10 at 19:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.