-
Notifications
You must be signed in to change notification settings - Fork 0
/
number_floatspanset.go
456 lines (372 loc) · 10.7 KB
/
number_floatspanset.go
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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
package gomeos
/*
#include "meos.h"
#include <stdio.h>
#include <stdlib.h>
#include "cast.h"
*/
import "C"
import (
"fmt"
"unsafe"
)
type FloatSpanSet struct {
_inner *C.SpanSet
}
func (fss *FloatSpanSet) IsSpanSet() bool {
return true
}
func (fss *FloatSpanSet) Inner() *C.SpanSet {
return fss._inner
}
func (fss *FloatSpanSet) Init(ss *C.SpanSet) {
fss._inner = ss
}
func NewFloatSpanSet(g_fss_in string) *FloatSpanSet {
c_fss_in := C.CString(g_fss_in)
defer C.free(unsafe.Pointer(c_fss_in))
c_fss := C.floatspanset_in(c_fss_in)
g_fss := &FloatSpanSet{_inner: c_fss}
return g_fss
}
/*
Return the string representation of the content of FloatSpanSet.
Returns:
String
MEOS Functions:
floatspanset_out
*/
func (g_fss *FloatSpanSet) FloatSpanSetOut(max_decimal int) string {
c_fss_out := C.floatspanset_out(g_fss._inner, C.int(max_decimal))
defer C.free(unsafe.Pointer(c_fss_out))
g_fss_out := C.GoString(c_fss_out)
return g_fss_out
}
/*
Returns a span that encompasses _inner.
Returns:
A new struct `FloatSpan` instance
MEOS Functions:
spanset_span
*/
func (g_fss FloatSpanSet) ToSpan() FloatSpan {
return FloatSpan{_inner: C.spanset_span(g_fss._inner)}
}
/*
Converts FloatSpanSet to an IntSpanSet instance.
Returns:
A new IntSpanSet instance
MEOS Functions:
floatspanset_to_intspanset
*/
func (g_fss FloatSpanSet) ToIntSpanSet() IntSpanSet {
return IntSpanSet{_inner: C.floatspanset_to_intspanset(g_fss._inner)}
}
/*
Returns the number of spans in FloatSpanSet.
Returns:
An int
MEOS Functions:
spanset_num_spans
*/
func (g_fss FloatSpanSet) NumSpans() int {
return int(C.spanset_num_spans(g_fss._inner))
}
/*
Returns the width of the spanset. By default, i.e., when the second
argument is False, the function takes into account the gaps within,
i.e., returns the sum of the widths of the spans within.
Otherwise, the function returns the width of the spanset ignoring
any gap, i.e., the width from the lower bound of the first span to
the upper bound of the last span.
Parameters:
ignore_gaps: Whether to take into account potential gaps in
the spanset.
Returns:
A `float` representing the duration of the spanset
MEOS Functions:
floatspanset_width
*/
func (g_fss FloatSpanSet) Width(ignore_gap bool) float64 {
ig := C._Bool(ignore_gap)
return float64(C.floatspanset_width(g_fss._inner, ig))
}
/*
Returns the first span in spanset.
Returns:
A FloatSpan instance
MEOS Functions:
spanset_start_span
*/
func (g_fss FloatSpanSet) StartSpan() FloatSpan {
return FloatSpan{_inner: C.spanset_start_span(g_fss._inner)}
}
/*
Returns the last span in FloatSpanSet.
Returns:
A FloatSpan instance
MEOS Functions:
spanset_end_span
*/
func (g_fss FloatSpanSet) EndSpan() FloatSpan {
return FloatSpan{_inner: C.spanset_end_span(g_fss._inner)}
}
/*
Returns the n-th span in FloatSpanSet.
Returns:
A FloatSpan instance
MEOS Functions:
spanset_span_n
*/
func (g_fss FloatSpanSet) SpanN(n int) FloatSpan {
return FloatSpan{_inner: C.spanset_span_n(g_fss._inner, C.int(n))}
}
/*
Returns the list of spans in FloatSpanSet.
Returns:
A FloatSpan instance
MEOS Functions:
spanset_spans
*/
func (g_fss FloatSpanSet) Spans() []FloatSpan {
nums := g_fss.NumSpans()
spans := make([]FloatSpan, nums)
for i := 1; i < nums+1; i++ {
spans[i-1] = g_fss.SpanN(i)
}
return spans
}
/*
Return a new “FloatSpanSet“ with the lower and upper bounds shifted by
“delta“.
Args:
delta: The value to shift by
Returns:
A new ``FloatSpanSet`` instance
MEOS Functions:
floatspanset_shift_scale
*/
func (g_fss FloatSpanSet) ShiftScale(d float64, w float64) FloatSpanSet {
modified := C.floatspanset_shift_scale(g_fss._inner, C.double(d), C.double(w), C._Bool(d != 0), C._Bool(w != 0))
return FloatSpanSet{_inner: modified}
}
/*
Return a new “FloatSpanSet“ with the lower and upper bounds shifted by
“delta“.
Args:
delta: The value to shift by
Returns:
A new ``FloatSpanSet`` instance
MEOS Functions:
floatspanset_shift_scale
*/
func (g_fss FloatSpanSet) Shift(delta float64) FloatSpanSet {
return g_fss.ShiftScale(delta, 0)
}
/*
Return a new “FloatSpanSet“ with the lower and upper bounds scaled so
that the width is “width“.
Args:
width: The new width
Returns:
A new ``FloatSpanSet`` instance
MEOS Functions:
floatspanset_shift_scale
*/
func (g_fss FloatSpanSet) Scale(width float64) FloatSpanSet {
return g_fss.ShiftScale(0, width)
}
func (g_fss *FloatSpanSet) IsAdjacent(other interface{}) (bool, error) {
switch o := other.(type) {
case int:
return bool(C.adjacent_spanset_float(g_fss._inner, C.double(o))), nil
case float64:
return bool(C.adjacent_spanset_float(g_fss._inner, C.double(o))), nil
case *FloatSpan:
return bool(C.adjacent_spanset_span(g_fss._inner, o._inner)), nil
case *FloatSpanSet:
return bool(C.adjacent_spanset_spanset(g_fss._inner, o._inner)), nil
default:
return false, fmt.Errorf("operation not supported with type %T", other)
}
}
func (g_fss *FloatSpanSet) Contains(other interface{}) (bool, error) {
switch o := other.(type) {
case float64:
return bool(C.contains_spanset_float(g_fss._inner, C.double(o))), nil
case *FloatSpan:
return bool(C.contains_spanset_span(g_fss._inner, o._inner)), nil
case *FloatSpanSet:
return bool(C.contains_spanset_spanset(g_fss._inner, o._inner)), nil
default:
return false, fmt.Errorf("operation not supported with type %T", other)
}
}
func (g_fss *FloatSpanSet) IsSame(other interface{}) (bool, error) {
switch o := other.(type) {
case float64:
return bool(C.spanset_eq(g_fss._inner, C.float_to_spanset(C.double(o)))), nil
case *FloatSpan:
return bool(C.span_eq(g_fss.ToSpan()._inner, o._inner)), nil
case *FloatSpanSet:
return bool(C.span_eq(g_fss.ToSpan()._inner, o.ToSpan()._inner)), nil
default:
return false, fmt.Errorf("operation not supported with type %T", other)
}
}
func (g_fss *FloatSpanSet) IsLeft(other interface{}) (bool, error) {
switch o := other.(type) {
case float64:
return bool(C.left_spanset_float(g_fss._inner, C.double(o))), nil
case *FloatSpan:
return bool(C.left_spanset_span(g_fss._inner, o._inner)), nil
case *FloatSpanSet:
return bool(C.left_spanset_spanset(g_fss._inner, o._inner)), nil
default:
return false, fmt.Errorf("operation not supported with type %T", other)
}
}
func (g_fss *FloatSpanSet) IsOverOrLeft(other interface{}) (bool, error) {
switch o := other.(type) {
case float64:
return bool(C.overleft_spanset_float(g_fss._inner, C.double(o))), nil
case *FloatSpan:
return bool(C.overleft_spanset_span(g_fss._inner, o._inner)), nil
case *FloatSpanSet:
return bool(C.overleft_spanset_spanset(g_fss._inner, o._inner)), nil
default:
return false, fmt.Errorf("operation not supported with type %T", other)
}
}
func (g_fss *FloatSpanSet) IsRight(other interface{}) (bool, error) {
switch o := other.(type) {
case float64:
return bool(C.right_spanset_float(g_fss._inner, C.double(o))), nil
case *FloatSpan:
return bool(C.right_spanset_span(g_fss._inner, o._inner)), nil
case *FloatSpanSet:
return bool(C.right_spanset_spanset(g_fss._inner, o._inner)), nil
default:
return false, fmt.Errorf("operation not supported with type %T", other)
}
}
func (g_fss *FloatSpanSet) IsOverOrRight(other interface{}) (bool, error) {
switch o := other.(type) {
case float64:
return bool(C.overright_spanset_float(g_fss._inner, C.double(o))), nil
case *FloatSpan:
return bool(C.overright_spanset_span(g_fss._inner, o._inner)), nil
case *FloatSpanSet:
return bool(C.overright_spanset_spanset(g_fss._inner, o._inner)), nil
default:
return false, fmt.Errorf("operation not supported with type %T", other)
}
}
func (g_fss *FloatSpanSet) Distance(other interface{}) (float32, error) {
switch o := other.(type) {
case int:
return float32(C.distance_spanset_float(g_fss._inner, C.double(float32(o)))), nil
case float32:
return float32(C.distance_spanset_float(g_fss._inner, C.double(o))), nil
case float64:
return float32(C.distance_spanset_float(g_fss._inner, C.double(o))), nil
case *FloatSet:
return float32(C.distance_floatspanset_floatspanset(g_fss._inner, o.ToSpanSet()._inner)), nil
case *FloatSpan:
return float32(C.distance_floatspanset_floatspan(g_fss._inner, o._inner)), nil
case *FloatSpanSet:
return float32(C.distance_floatspanset_floatspanset(g_fss._inner, o._inner)), nil
default:
return 0, fmt.Errorf("operation not supported with type %T", other)
}
}
func (g_fss *FloatSpanSet) Intersection(other interface{}) (*FloatSpanSet, error) {
switch o := other.(type) {
case float64:
res := C.intersection_spanset_float(g_fss._inner, C.double(o))
if res == nil {
return nil, nil
} else {
return &FloatSpanSet{_inner: res}, nil
}
case *FloatSpan:
res := C.intersection_spanset_span(g_fss._inner, o._inner)
if res == nil {
return nil, nil
} else {
return &FloatSpanSet{_inner: res}, nil
}
case *FloatSpanSet:
res := C.intersection_spanset_spanset(g_fss._inner, o._inner)
if res == nil {
return nil, nil
} else {
return &FloatSpanSet{_inner: res}, nil
}
default:
return nil, fmt.Errorf("operation not supported with type %T", other)
}
}
func (g_fss *FloatSpanSet) Mul(other interface{}) (*FloatSpanSet, error) {
return g_fss.Intersection(other)
}
func (g_fss *FloatSpanSet) Minus(other interface{}) (*FloatSpanSet, error) {
switch o := other.(type) {
case float64:
res := C.minus_spanset_float(g_fss._inner, C.double(o))
if res == nil {
return nil, nil
} else {
return &FloatSpanSet{_inner: res}, nil
}
case *FloatSpan:
res := C.minus_spanset_span(g_fss._inner, o._inner)
if res == nil {
return nil, nil
} else {
return &FloatSpanSet{_inner: res}, nil
}
case *FloatSpanSet:
res := C.minus_spanset_spanset(g_fss._inner, o._inner)
if res == nil {
return nil, nil
} else {
return &FloatSpanSet{_inner: res}, nil
}
default:
return nil, fmt.Errorf("operation not supported with type %T", other)
}
}
func (g_fss *FloatSpanSet) Sub(other interface{}) (*FloatSpanSet, error) {
return g_fss.Minus(other)
}
func (g_fss *FloatSpanSet) Union(other interface{}) (*FloatSpanSet, error) {
switch o := other.(type) {
case float64:
res := C.gunion_spanset_float(g_fss._inner, C.double(o))
if res == nil {
return nil, nil
} else {
return &FloatSpanSet{_inner: res}, nil
}
case *FloatSpan:
res := C.gunion_spanset_span(g_fss._inner, o._inner)
if res == nil {
return nil, nil
} else {
return &FloatSpanSet{_inner: res}, nil
}
case *FloatSpanSet:
res := C.gunion_spanset_spanset(g_fss._inner, o._inner)
if res == nil {
return nil, nil
} else {
return &FloatSpanSet{_inner: res}, nil
}
default:
return nil, fmt.Errorf("operation not supported with type %T", other)
}
}
func (g_fss *FloatSpanSet) Add(other interface{}) (*FloatSpanSet, error) {
return g_fss.Union(other)
}