Rename interpretor to interpreter.
[Faustine.git] / interpretor / preprocessor / faust-0.9.47mr3 / compiler / extended / cosprim.cpp
diff --git a/interpretor/preprocessor/faust-0.9.47mr3/compiler/extended/cosprim.cpp b/interpretor/preprocessor/faust-0.9.47mr3/compiler/extended/cosprim.cpp
deleted file mode 100644 (file)
index 8a25603..0000000
+++ /dev/null
@@ -1,61 +0,0 @@
-#include "xtended.hh"
-#include "Text.hh"
-#include <math.h>
-
-#include "floats.hh"
-
-class CosPrim : public xtended
-{
-
- public:
-       CosPrim() : xtended("cos") {}
-       
-       virtual unsigned int    arity () { return 1; }
-       
-       virtual bool    needCache ()    { return true; }
-       
-       virtual Type    infereSigType (const vector<Type>& args)
-       {
-               assert (args.size() == 1);
-               return castInterval(floatCast(args[0]), interval(-1,1));
-       }
-       
-       virtual void    sigVisit (Tree sig, sigvisitor* visitor) {}     
-       
-       virtual int infereSigOrder (const vector<int>& args) {
-               return args[0];
-       }
-
-       
-       virtual Tree    computeSigOutput (const vector<Tree>& args) {
-               num n;
-               if (isNum(args[0],n)) {
-                       return tree(cos(double(n)));
-               } else {
-                       return tree(symbol(), args[0]);
-               }
-       }
-               
-       virtual string  generateCode (Klass* klass, const vector<string>& args, const vector<Type>& types)
-       {
-               assert (args.size() == arity());
-               assert (types.size() == arity());
-               
-        return subst("cos$1($0)", args[0], isuffix());
-       }
-       
-       virtual string  generateLateq (Lateq* lateq, const vector<string>& args, const vector<Type>& types)
-       {
-               assert (args.size() == arity());
-               assert (types.size() == arity());
-               
-        return subst("\\cos\\left($0\\right)", args[0]);
-       }
-       
-};
-
-
-xtended* gCosPrim = new CosPrim();
-
-