File: tests.ct

package info (click to toggle)
tela 1.34-4
  • links: PTS
  • area: main
  • in suites: woody
  • size: 8,064 kB
  • ctags: 6,105
  • sloc: cpp: 19,200; ansic: 13,761; lex: 1,652; fortran: 1,048; yacc: 834; sh: 723; makefile: 571
file content (124 lines) | stat: -rw-r--r-- 2,263 bytes parent folder | download | duplicates (3)
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
/*
 * This file is part of tela the Tensor Language.
 * Copyright (c) 1994-1999 Pekka Janhunen
 */

/*
    tests.ct
	C-tela code for Standard library, Preprocess with ctpp.
	C-tela code is C++ equipped with []=f() style function definition.
*/

[f] = cfibint(n)
/* cfibint(n) returns the nth Fibonacci number. The argument must be an integer. */
{
	Tobject n1,n2,f1,f2;
	TConstObjectPtr np;
	TObjectPtr fp;
	int ni;
	if (n.kind()!=Kint) {f.SetToVoid(); return 1;}
	ni = n.IntValue();
	if (ni < 2) {
		f = ni;
	} else {
		n1 = ni-1;
		n2 = ni-2;
		np = &n1;
		fp = &f1;
		cfibintfunction(&np,1,&fp,1);
		np=&n2;
		fp=&f2;
		cfibintfunction(&np,1,&fp,1);
		f = f1.IntValue() + f2.IntValue();
	}
	return 0;
}

[f] = cfib(n)
/* cfib(n) returns the nth Fibonacci number. */
{
	static const Tobject two = 2;
	Tobject cmpresult,n1,n2,f1,f2;
	TConstObjectPtr np;
	TObjectPtr fp;
	Lt(cmpresult,n,two);		// n < 2 ?
	if (cmpresult.IsNonzero()) {	// Yes
		f = n;
	} else {					// No
		n1 = n;
		Dec(n1);			// n1=n-1
		n2 = n1;
		Dec(n2);			// n2=n-2
		np = &n1;
		fp = &f1;
		cfibfunction(&np,1,&fp,1);
		np=&n2;
		fp=&f2;
		cfibfunction(&np,1,&fp,1);
		Add(f,f1,f2);
	}
	return 0;
}

[t] = new100000()
{
	Treal t1 = CPUSeconds();
	for (int i=0; i<100000; i++) {
		Tobject *p = new Tobject();
		delete p;
	}
	t = CPUSeconds()-t1;
	return 0;
}

[t] = newdata100000()
{
	Treal t1 = CPUSeconds();
	for (int i=0; i<100000; i++) {
		char *p = new char [sizeof(Tobject)];
		delete [] p;
	}
	t = CPUSeconds()-t1;
	return 0;
}

[] = CallMe1() {
	clog << "Calling CallMe()\n";
	return 0;
}

[] = OneArg(x) {
	clog << "OneArg: " << x << "\n";
	return 0;
}

[] = OneOptionalArg(;x) {
	if (Nargin == 1)
		clog << "OneOptionalArg: " << x << "\n";
	else if (Nargin == 0)
		clog << "OneOptionalArg:  no args\n";
	else
		clog << "*** OneOptionalArg: " << Nargin << " args.\n";
	return 0;
}

[y] = OneToOne(x) {
	clog << "OneToOne: squaring argument x=" << x << ".";
	Mul(y,x,x);
	clog << " Result: y=" << y << "\n";
	return 0;
}

[y] = EllipsisIn(...) {
	clog << "EllipsisIn: " << Nargin << " arguments.\n";
	y = Tcomplex(2,3);
	return 0;
}

[...] = EllipsisOut() {
	clog << "EllipsisOut: " << Nargout << " output arguments.\n";
	for (int i=0; i<Nargout; i++) *argout[i] = i;
	return 0;
}