1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
|
#include "interval_algebra.hh"
#include "interval_def.hh"
namespace itv {
//------------------------------------------------------------------------------------------
// Missing operations. A default implementation is provided for the code to compile. A real
// implementation has to be provided.
interval interval_algebra::Nil()
{
return interval(0);
}
interval interval_algebra::FixPointUpdate(const interval& x, const interval& y)
{
return interval(0);
}
interval interval_algebra::Input(const interval& c)
{
return interval(0);
}
interval interval_algebra::Output(const interval& c, const interval& y)
{
return interval(0);
}
/*
interval interval_algebra::Button(const interval& name)
{
return interval(0);
}
interval interval_algebra::Checkbox(const interval& name)
{
return interval(0);
}
*/
interval interval_algebra::HBargraph(const interval& name, const interval& lo, const interval& hi)
{
return interval(0);
}
interval interval_algebra::VBargraph(const interval& name, const interval& lo, const interval& hi)
{
return interval(0);
}
interval interval_algebra::Attach(const interval& x, const interval& y)
{
return interval(0);
}
interval interval_algebra::Highest(const interval& x)
{
return interval(0);
}
interval interval_algebra::Lowest(const interval& x)
{
return interval(0);
}
interval interval_algebra::BitCast(const interval& x)
{
return interval(0);
}
interval interval_algebra::Select2(const interval& x, const interval& y, const interval& z)
{
return interval(0);
}
interval interval_algebra::Prefix(const interval& x, const interval& y)
{
return interval(0);
}
interval interval_algebra::RDTbl(const interval& wtbl, const interval& ri)
{
return interval(0);
}
interval interval_algebra::WRTbl(const interval& n, const interval& g, const interval& wi,
const interval& ws)
{
return interval(0);
}
interval interval_algebra::Gen(const interval& x)
{
return interval(0);
}
interval interval_algebra::SoundFile(const interval& label)
{
return interval(0);
}
interval interval_algebra::SoundFileRate(const interval& sf, const interval& x)
{
return interval(0);
}
interval interval_algebra::SoundFileLength(const interval& sf, const interval& x)
{
return interval(0);
}
interval interval_algebra::SoundFileBuffer(const interval& sf, const interval& x, const interval& y,
const interval& z)
{
return interval(0);
}
interval interval_algebra::Waveform(const std::vector<interval>& w)
{
return interval(0);
}
/*
interval interval_algebra::VSlider(const interval& name, const interval& init, const interval& lo,
const interval& hi, const interval& step)
{
return interval(0);
}
interval interval_algebra::HSlider(const interval& name, const interval& init, const interval& lo,
const interval& hi, const interval& step)
{
return interval(0);
}
interval interval_algebra::NumEntry(const interval& name, const interval& init, const interval& lo,
const interval& hi, const interval& step)
{
return interval(0);
}
interval interval_algebra::IntNum(int x)
{
return interval(0);
}
interval interval_algebra::Int64Num(int64_t x)
{
return interval(0);
}
interval interval_algebra::FloatNum(double x)
{
return interval(0);
}
interval interval_algebra::Label(const std::string& x)
{
return interval(0);
}
*/
// Foreign functions
interval interval_algebra::ForeignFunction(const std::vector<interval>& ff)
{
return interval(0);
}
interval interval_algebra::ForeignVar(const interval& type, const interval& name,
const interval& file)
{
return interval(0);
}
interval interval_algebra::ForeignConst(const interval& type, const interval& name,
const interval& file)
{
return interval(0);
}
} // namespace itv
|