FAUST compiler
0.9.9.6b8
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
extended
log10prim.cpp
Go to the documentation of this file.
1
#include "
xtended.hh
"
2
#include "
Text.hh
"
3
#include <math.h>
4
5
#include "
floats.hh
"
6
7
8
class
Log10Prim
:
public
xtended
9
{
10
11
public
:
12
13
Log10Prim
() :
xtended
(
"log10"
) {}
14
15
virtual
unsigned
int
arity
() {
return
1; }
16
17
virtual
bool
needCache
() {
return
true
; }
18
19
virtual
Type
infereSigType
(
const
vector<Type>& args)
20
{
21
assert (args.size() ==
arity
());
22
interval
i = args[0]->getInterval();
23
if
(i.valid && (i.lo > 0)) {
24
return
castInterval
(
floatCast
(args[0]),
interval
(log10(i.lo), log10(i.hi)));
25
}
else
{
26
return
floatCast
(args[0]);
27
}
28
}
29
30
virtual
void
sigVisit
(
Tree
sig,
sigvisitor
* visitor) {}
31
32
virtual
int
infereSigOrder
(
const
vector<int>& args) {
33
assert (args.size() ==
arity
());
34
return
args[0];
35
}
36
37
38
virtual
Tree
computeSigOutput
(
const
vector<Tree>& args) {
39
num
n;
40
assert (args.size() ==
arity
());
41
if
(
isNum
(args[0],n)) {
42
return
tree
(log10(
double
(n)));
43
}
else
{
44
return
tree
(
symbol
(), args[0]);
45
}
46
}
47
48
virtual
string
generateCode
(
Klass
* klass,
const
vector<string>& args,
const
vector<Type>& types)
49
{
50
assert (args.size() ==
arity
());
51
assert (types.size() ==
arity
());
52
53
return
subst
(
"log10$1($0)"
, args[0],
isuffix
());
54
}
55
56
virtual
string
generateLateq
(
Lateq
* lateq,
const
vector<string>& args,
const
vector<Type>& types)
57
{
58
assert (args.size() ==
arity
());
59
assert (types.size() ==
arity
());
60
61
return
subst
(
"\\log_{10}\\left( $0 \\right)"
, args[0]);
62
}
63
64
};
65
66
67
xtended
*
gLog10Prim
=
new
Log10Prim
();
68
69
xtended.hh
Log10Prim::computeSigOutput
virtual Tree computeSigOutput(const vector< Tree > &args)
Definition:
log10prim.cpp:38
Log10Prim::needCache
virtual bool needCache()
Definition:
log10prim.cpp:17
num
Definition:
num.hh:58
isNum
bool isNum(Tree a)
Definition:
signals.hh:187
Log10Prim::infereSigType
virtual Type infereSigType(const vector< Type > &args)
Definition:
log10prim.cpp:19
P
Definition:
smartpointer.hh:34
Log10Prim::arity
virtual unsigned int arity()
Definition:
log10prim.cpp:15
CTree
A CTree = (Node x [CTree]) is a Node associated with a list of subtrees called branches.
Definition:
tree.hh:109
Lateq
Definition:
lateq.hh:56
sigvisitor
Definition:
sigvisitor.hh:6
Log10Prim
Definition:
log10prim.cpp:8
Log10Prim::generateLateq
virtual string generateLateq(Lateq *lateq, const vector< string > &args, const vector< Type > &types)
Definition:
log10prim.cpp:56
xtended
Definition:
xtended.hh:12
interval
Definition:
interval.hh:36
floatCast
Type floatCast(Type t)
Definition:
sigtype.hh:270
subst
string subst(const string &model, const vector< string > &args)
Text substitution.
Definition:
Text.cpp:47
Text.hh
Klass
Definition:
klass.hh:55
Log10Prim::infereSigOrder
virtual int infereSigOrder(const vector< int > &args)
Definition:
log10prim.cpp:32
floats.hh
xtended::symbol
Sym symbol()
Definition:
xtended.hh:24
tree
Tree tree(const Node &n)
Definition:
tree.hh:186
Log10Prim::sigVisit
virtual void sigVisit(Tree sig, sigvisitor *visitor)
Definition:
log10prim.cpp:30
castInterval
Type castInterval(Type t, const interval &i)
Definition:
sigtype.hh:278
isuffix
const char * isuffix()
suffix for math functions
Definition:
floats.cpp:43
gLog10Prim
xtended * gLog10Prim
Definition:
log10prim.cpp:67
Log10Prim::Log10Prim
Log10Prim()
Definition:
log10prim.cpp:13
Log10Prim::generateCode
virtual string generateCode(Klass *klass, const vector< string > &args, const vector< Type > &types)
Definition:
log10prim.cpp:48
Generated on Fri Sep 5 2014 18:06:36 for FAUST compiler by
1.8.7