root/applications/robust/robustlib.cpp @ 976

Revision 976, 0.7 kB (checked in by sindj, 14 years ago)

Zaklad robustu, prikladek pro Windows. JS

Line 
1#include "robustlib.h"
2
3point :: point(vec coordinates)
4{
5        this->coordinates = coordinates;
6        this->twinpoint   = NULL;
7}
8
9point :: point(vec coordinates, point *twinpoint)
10{
11        this->coordinates = coordinates;
12        this->twinpoint   = twinpoint;
13}
14
15segment :: segment(point *end1, point *end2)
16{
17        this->end1 = end1;
18        this->end2 = end2;
19}
20
21leaf :: leaf(vec condition, leaf *parent)
22{
23        this->condition  = condition;                           
24        this->parent     = parent;
25}
26
27leaf :: evolvechildren(vec condition)
28{
29        this->condition = condition;
30
31
32}
33
34emlig :: emlig(leaf *tree) : eEF()
35{
36        this->tree = tree;
37}
38
39emlig :: emlig(vec [] conditions) : eEF()
40{
41        emlig::buildtree(conditions);
42}
43
44emlig :: buildtree()
45{}
Note: See TracBrowser for help on using the browser.