axiom-developer archive search

Search String: Display: Description: Sort:

Results:

References: [ aldor: 2190 ]

Total 2190 documents matching your query.

281. Re: [Axiom-developer] axiom/aldor oddities (score: 36)
Author: HIDDEN
Date: Fri, 19 Jan 2007 17:04:04 +0100
Hello, I also played a bit with your code, but I cannot quite give the same reasoning as Martin. I can only guess... --BEGIN strange.as FPI ==> Fraction Polynomial Integer; tfpi1(d:Polynomial Integer
/archive/html/axiom-developer/2007-01/msg00079.html (8,216 bytes)

282. Re: [Axiom-developer] How to do generic sum using aldor? (score: 36)
Author: HIDDEN
Date: Thu, 04 Jan 2007 16:10:38 +0100
Since you want to work with Axiom, I guess you are right here. well, there is also axiom-math and axiom-mail ... anyways the people who answer seem to be the same:) Right. There are not so many peopl
/archive/html/axiom-developer/2007-01/msg00021.html (11,194 bytes)

283. [Axiom-developer] Re: [Aldor-l] export to vs. export from (score: 36)
Author: HIDDEN
Date: Wed, 6 Dec 2006 11:36:43 -0500
"export from" is correct. -- Stephen
/archive/html/axiom-developer/2006-12/msg00068.html (5,463 bytes)

284. [Axiom-developer] Functors (was: Licensing Aldor) (score: 36)
Author: HIDDEN
Date: Wed, 22 Nov 2006 06:48:48 -0500
Ok. I want to reply to one technical point so I will shift to axiom-developer. variable factorisation Are you referring to the discussion of dependent types in Aldor function definitions such as g(p:
/archive/html/axiom-developer/2006-11/msg00690.html (7,283 bytes)

285. Re: [Axiom-developer] Re: SPAD and Aldor again (score: 36)
Author: HIDDEN
Date: 17 Nov 2006 21:02:40 +0100
Oops. That's the worst news I heard for a long time. It's time to send email to Stephen Watt again. Martin
/archive/html/axiom-developer/2006-11/msg00609.html (8,930 bytes)

286. Re: [Axiom-developer] Re: SPAD and Aldor again (score: 36)
Author: HIDDEN
Date: Fri, 17 Nov 2006 19:16:44 +0000
Yup. Reverse engineering the .ao is possible, but not a serious proposition. Peter
/archive/html/axiom-developer/2006-11/msg00608.html (8,416 bytes)

287. Re: [Axiom-developer] Re: SPAD and Aldor again (score: 36)
Author: HIDDEN
Date: 17 Nov 2006 11:36:01 +0100
Does this mean that one would need to modify the Aldor compiler? I.e., we would need access to the sources? So, is there any way to make this happen? Money? Martin
/archive/html/axiom-developer/2006-11/msg00568.html (8,593 bytes)

288. Re: [Axiom-developer] Re: SPAD and Aldor again (score: 36)
Author: HIDDEN
Date: Fri, 17 Nov 2006 10:35:04 +0000
That one as well (my mistake). daase does the reading and setting up imports, as.boot does the mapping to axiom types. Peter
/archive/html/axiom-developer/2006-11/msg00567.html (8,307 bytes)

289. Re: [Axiom-developer] Re: SPAD and Aldor again (score: 36)
Author: HIDDEN
Date: Fri, 17 Nov 2006 11:24:03 +0100 (CET)
^^^^^^^^^^ You mean 'as.boot'? -- Waldek Hebisch address@hidden
/archive/html/axiom-developer/2006-11/msg00566.html (8,073 bytes)

290. Re: [Axiom-developer] Aldor compilation for Axiom (score: 36)
Author: HIDDEN
Date: 06 Nov 2006 08:34:04 +0100
If you say then axiom then )lib blah it should work. I guess that in this case the lisp is interpreted rather than compiled. But usually, that doesn't matter anyway, at least not for development. Unf
/archive/html/axiom-developer/2006-11/msg00256.html (6,127 bytes)

291. Re: [Axiom-developer] Aldor and Axiom - alternatives? (score: 36)
Author: HIDDEN
Date: 15 Sep 2006 06:25:33 +0200
we just do it. :-) Whether we convert to Aldor or some other language, we still need to know the semantics of the SPAD language. After all, the algebra files have meanings (with bugs or not). if we d
/archive/html/axiom-developer/2006-09/msg00470.html (7,069 bytes)

292. Re: [Axiom-developer] RE: [Aldor-l] Type: Type (score: 36)
Author: HIDDEN
Date: 30 Aug 2006 05:15:57 -0500
I believe I need more explanations than the vague allusion to co-inductive formalism. Epigram, for example, faces the same issue, and I don't think it is just mirage: http://www.mail-archive.com/addr
/archive/html/axiom-developer/2006-08/msg00606.html (7,271 bytes)

293. RE: [Axiom-developer] Aldor translations (score: 36)
Author: HIDDEN
Date: Thu, 27 Jul 2006 13:26:10 -0400
I agree. I do not see any reason to want to replace the current run-time environment of Axiom with anything else. Axiom's algebra library depends strongly on the S-expressions and other lisp data str
/archive/html/axiom-developer/2006-07/msg00184.html (8,733 bytes)

294. [Axiom-developer] Re: [Aldor-l] exports and constants (score: 36)
Author: HIDDEN
Date: Tue, 25 Jul 2006 00:50:33 +0200
Now let's make things a bit more complicated. Would you be able to guess the output of the following program? --BEGIN aaa7.as define CatA: Category == with; define CatX: Category == with; A: Join(Cat
/archive/html/axiom-developer/2006-07/msg00091.html (9,735 bytes)

295. [Axiom-developer] RE: [Aldor-l] exports and constants (score: 36)
Author: HIDDEN
Date: Mon, 24 Jul 2006 11:14:04 -0400
On July 24, 2006 3:38 AM Christian Aistleitner I agree with you and that was precisely my point. Perhaps I did not explain myself clearly. Yes, howerver originally I believed that Aldor could resolve
/archive/html/axiom-developer/2006-07/msg00078.html (10,202 bytes)

296. [Axiom-developer] Re: [Aldor-l] exports and constants (score: 36)
Author: HIDDEN
Date: Mon, 24 Jul 2006 09:37:52 +0200
Hello, --BEGIN aaa6.as macro I == MachineInteger; define CatX: Category == with {foo: () -> I} A: CatX == add {foo(): I == 0;} B: CatX == add {foo(): I == 1;} import from MachineInteger; X: CatX == i
/archive/html/axiom-developer/2006-07/msg00076.html (10,421 bytes)

297. [Axiom-developer] Call Foreign C from Aldor/Axiom (fwd) (score: 36)
Author: HIDDEN
Date: Wed, 07 Jun 2006 14:42:19 +0200
Hi Camm and the Axiom developers, I want to summarize my attempts to load external C libraries/functions from within Aldor/Axiom. I hope a lisp/gcl guru can give me some advice - especially on 2.3 ;-
/archive/html/axiom-developer/2006-06/msg00026.html (11,865 bytes)

298. Re: [Axiom-developer] Call Foreign C from Aldor/Axiom (score: 36)
Author: HIDDEN
Date: Fri, 02 Jun 2006 09:06:02 +0100
Looks ok, aside from the fact that you assume that axiom's representation of SI and String are the same as lisp's - probably true, but it may be better to uniformly use SExpression as the argument a
/archive/html/axiom-developer/2006-06/msg00003.html (6,490 bytes)

299. [Axiom-developer] Re: [Aldor-l] [Axiom-math] Are Fraction and Complex domains. (score: 36)
Author: HIDDEN
Date: Wed, 17 May 2006 15:02:57 +0200
Hello, OK, I see now. It could be -- in the non functional setting -- that a: NonFunctionalDomainConstructor Integer := something b: NonFunctionalDomainConstructor Integer := otherthing and NonFuncti
/archive/html/axiom-developer/2006-05/msg00201.html (12,838 bytes)

300. [Axiom-developer] Re: [Aldor-l] [Axiom-math] Are Fraction and Complex domains. (score: 36)
Author: HIDDEN
Date: 17 May 2006 10:24:13 +0200
I should have been more precise: with "equal in some sense" I meant "not exactly equal". In german it is easier: I meant "nicht dasselbe sondern nur das gleiche". if x and y are "dasselbe" yes, other
/archive/html/axiom-developer/2006-05/msg00199.html (12,017 bytes)


This search system is powered by Namazu