2001-04-09 20:54:03 +01:00
|
|
|
/*************************************************************************
|
|
|
|
* *
|
|
|
|
* YAP Prolog *
|
|
|
|
* *
|
|
|
|
* Yap Prolog was developed at NCCUP - Universidade do Porto *
|
|
|
|
* *
|
|
|
|
* Copyright L.Damas, V.S.Costa and Universidade do Porto 1985-1997 *
|
|
|
|
* *
|
|
|
|
**************************************************************************
|
|
|
|
* *
|
|
|
|
* File: eval.c *
|
|
|
|
* Last rev: *
|
|
|
|
* mods: *
|
|
|
|
* comments: arithmetical expression evaluation *
|
|
|
|
* *
|
|
|
|
*************************************************************************/
|
|
|
|
#ifdef SCCS
|
|
|
|
static char SccsId[] = "%W% %G%";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This file implements arithmetic operations
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#include "Yap.h"
|
|
|
|
#include "Yatom.h"
|
|
|
|
#include "Heap.h"
|
|
|
|
#include "eval.h"
|
|
|
|
|
2002-11-18 18:18:05 +00:00
|
|
|
yap_error_number Yap_matherror = YAP_NO_ERROR;
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
#define E_FUNC blob_type
|
|
|
|
#define E_ARGS arith_retptr o
|
|
|
|
#define USE_E_ARGS o
|
|
|
|
#define RBIG(v) (o)->big = v; return(big_int_e)
|
|
|
|
|
|
|
|
#define RINT(v) (o)->Int = v; return(long_int_e)
|
|
|
|
#define RFLOAT(v) (o)->dbl = v; return(double_e)
|
|
|
|
#define RERROR() return(db_ref_e)
|
|
|
|
|
|
|
|
static Term
|
|
|
|
EvalToTerm(blob_type bt, union arith_ret *res)
|
|
|
|
{
|
|
|
|
switch (bt) {
|
|
|
|
case long_int_e:
|
|
|
|
return(MkIntegerTerm(res->Int));
|
|
|
|
case double_e:
|
|
|
|
return(MkFloatTerm(res->dbl));
|
|
|
|
#ifdef USE_GMP
|
|
|
|
case big_int_e:
|
2002-11-18 18:18:05 +00:00
|
|
|
return(Yap_MkBigIntTerm(res->big));
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
return(TermNil);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-11-11 17:38:10 +00:00
|
|
|
static E_FUNC
|
2001-04-09 20:54:03 +01:00
|
|
|
Eval(Term t, E_ARGS)
|
|
|
|
{
|
|
|
|
if (IsVarTerm(t)) {
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_Error(INSTANTIATION_ERROR,TermNil,"in arithmetic");
|
2002-11-11 17:38:10 +00:00
|
|
|
P = (yamop *)FAILCODE;
|
|
|
|
RERROR();
|
|
|
|
}
|
|
|
|
if (IsApplTerm(t)) {
|
|
|
|
Functor fun = FunctorOfTerm(t);
|
|
|
|
switch ((CELL)fun) {
|
|
|
|
case (CELL)FunctorLongInt:
|
|
|
|
RINT(LongIntOfTerm(t));
|
|
|
|
case (CELL)FunctorDouble:
|
|
|
|
RFLOAT(FloatOfTerm(t));
|
|
|
|
#ifdef USE_GMP
|
|
|
|
case (CELL)FunctorBigInt:
|
2002-11-18 18:18:05 +00:00
|
|
|
RBIG(Yap_BigIntOfTerm(t));
|
2002-11-11 17:38:10 +00:00
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
{
|
|
|
|
Int n = ArityOfFunctor(fun);
|
|
|
|
Atom name = NameOfFunctor(fun);
|
|
|
|
ExpEntry *p;
|
|
|
|
|
2002-11-18 18:18:05 +00:00
|
|
|
if (EndOfPAEntr(p = RepExpProp(Yap_GetExpProp(name, n)))) {
|
2002-11-11 17:38:10 +00:00
|
|
|
Term ti[2];
|
|
|
|
|
|
|
|
/* error */
|
|
|
|
ti[0] = t;
|
|
|
|
ti[1] = MkIntegerTerm(n);
|
2002-11-18 18:18:05 +00:00
|
|
|
t = Yap_MkApplTerm(Yap_MkFunctor(Yap_LookupAtom("/"),2), 2, ti);
|
|
|
|
Yap_Error(TYPE_ERROR_EVALUABLE, t,
|
2002-11-11 17:38:10 +00:00
|
|
|
"functor %s/%d for arithmetic expression",
|
|
|
|
RepAtom(name)->StrOfAE,n);
|
|
|
|
P = (yamop *)FAILCODE;
|
|
|
|
RERROR();
|
|
|
|
}
|
|
|
|
if (n == 1)
|
|
|
|
return(p->FOfEE.unary(ArgOfTerm(1,t), USE_E_ARGS));
|
|
|
|
return(p->FOfEE.binary(ArgOfTerm(1,t),ArgOfTerm(2,t), USE_E_ARGS));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (IsPairTerm(t)) {
|
|
|
|
return(Eval(HeadOfTerm(t), USE_E_ARGS));
|
|
|
|
} else if (IsIntTerm(t)) {
|
|
|
|
RINT(IntOfTerm(t));
|
|
|
|
} else {
|
|
|
|
Atom name = AtomOfTerm(t);
|
|
|
|
ExpEntry *p;
|
|
|
|
|
2002-11-18 18:18:05 +00:00
|
|
|
if (EndOfPAEntr(p = RepExpProp(Yap_GetExpProp(name, 0)))) {
|
2002-11-11 17:38:10 +00:00
|
|
|
/* error */
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_Error(TYPE_ERROR_EVALUABLE, t,
|
2002-11-11 17:38:10 +00:00
|
|
|
"atom %s for arithmetic expression",
|
|
|
|
RepAtom(name)->StrOfAE);
|
|
|
|
P = (yamop *)FAILCODE;
|
|
|
|
RERROR();
|
|
|
|
}
|
|
|
|
return(p->FOfEE.constant(USE_E_ARGS));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
E_FUNC
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_Eval(Term t, E_ARGS)
|
2002-11-11 17:38:10 +00:00
|
|
|
{
|
|
|
|
if (IsVarTerm(t)) {
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_Error(INSTANTIATION_ERROR,TermNil,"in arithmetic");
|
2001-04-09 20:54:03 +01:00
|
|
|
P = (yamop *)FAILCODE;
|
|
|
|
RERROR();
|
|
|
|
}
|
|
|
|
if (IsApplTerm(t)) {
|
|
|
|
Functor fun = FunctorOfTerm(t);
|
|
|
|
switch ((CELL)fun) {
|
|
|
|
case (CELL)FunctorLongInt:
|
|
|
|
RINT(LongIntOfTerm(t));
|
|
|
|
case (CELL)FunctorDouble:
|
|
|
|
RFLOAT(FloatOfTerm(t));
|
|
|
|
#ifdef USE_GMP
|
|
|
|
case (CELL)FunctorBigInt:
|
2002-11-18 18:18:05 +00:00
|
|
|
RBIG(Yap_BigIntOfTerm(t));
|
2001-04-09 20:54:03 +01:00
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
{
|
|
|
|
Int n = ArityOfFunctor(fun);
|
|
|
|
Atom name = NameOfFunctor(fun);
|
|
|
|
ExpEntry *p;
|
|
|
|
|
2002-11-18 18:18:05 +00:00
|
|
|
if (EndOfPAEntr(p = RepExpProp(Yap_GetExpProp(name, n)))) {
|
2001-04-09 20:54:03 +01:00
|
|
|
Term ti[2];
|
|
|
|
|
|
|
|
/* error */
|
|
|
|
ti[0] = t;
|
|
|
|
ti[1] = MkIntegerTerm(n);
|
2002-11-18 18:18:05 +00:00
|
|
|
t = Yap_MkApplTerm(Yap_MkFunctor(Yap_LookupAtom("/"),2), 2, ti);
|
|
|
|
Yap_Error(TYPE_ERROR_EVALUABLE, t,
|
2001-04-09 20:54:03 +01:00
|
|
|
"functor %s/%d for arithmetic expression",
|
|
|
|
RepAtom(name)->StrOfAE,n);
|
|
|
|
P = (yamop *)FAILCODE;
|
|
|
|
RERROR();
|
|
|
|
}
|
|
|
|
if (n == 1)
|
|
|
|
return(p->FOfEE.unary(ArgOfTerm(1,t), USE_E_ARGS));
|
|
|
|
return(p->FOfEE.binary(ArgOfTerm(1,t),ArgOfTerm(2,t), USE_E_ARGS));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (IsPairTerm(t)) {
|
|
|
|
return(Eval(HeadOfTerm(t), USE_E_ARGS));
|
|
|
|
} else if (IsIntTerm(t)) {
|
|
|
|
RINT(IntOfTerm(t));
|
|
|
|
} else {
|
|
|
|
Atom name = AtomOfTerm(t);
|
|
|
|
ExpEntry *p;
|
|
|
|
|
2002-11-18 18:18:05 +00:00
|
|
|
if (EndOfPAEntr(p = RepExpProp(Yap_GetExpProp(name, 0)))) {
|
2001-04-09 20:54:03 +01:00
|
|
|
/* error */
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_Error(TYPE_ERROR_EVALUABLE, t,
|
2001-11-19 03:36:51 +00:00
|
|
|
"atom %s for arithmetic expression",
|
|
|
|
RepAtom(name)->StrOfAE);
|
2001-04-09 20:54:03 +01:00
|
|
|
P = (yamop *)FAILCODE;
|
|
|
|
RERROR();
|
|
|
|
}
|
|
|
|
return(p->FOfEE.constant(USE_E_ARGS));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static Int
|
|
|
|
p_is(void)
|
|
|
|
{ /* X is Y */
|
|
|
|
union arith_ret res;
|
|
|
|
blob_type bt;
|
|
|
|
|
|
|
|
bt = Eval(Deref(ARG2), &res);
|
2002-11-18 18:18:05 +00:00
|
|
|
return (Yap_unify_constant(ARG1,EvalToTerm(bt,&res)));
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_InitEval(void)
|
2001-04-09 20:54:03 +01:00
|
|
|
{
|
|
|
|
/* here are the arithmetical predicates */
|
2002-11-18 18:18:05 +00:00
|
|
|
Yap_InitConstExps();
|
|
|
|
Yap_InitUnaryExps();
|
|
|
|
Yap_InitBinaryExps();
|
|
|
|
Yap_InitCPred("is", 2, p_is, TestPredFlag | SafePredFlag);
|
2001-04-09 20:54:03 +01:00
|
|
|
}
|
|
|
|
|