|
[Date Index]
[Thread Index]
[Author Index]
Re: "Abort Evaluation" does not work
- To: mathgroup at smc.vnet.net
- Subject: [mg111915] Re: "Abort Evaluation" does not work
- From: Themis Matsoukas <tmatsoukas at me.com>
- Date: Wed, 18 Aug 2010 07:07:47 -0400 (EDT)
I was hoping someone would answer your question because I too find 'Abort Evaluation' to work erratically. For example, the loop below responds to 'Abort Evaluation':
i = 1;
While[i <= Infinity, ++i]
..but this loop does not:
i = 1;
While[i < 1000, Print[i]; ++i]
Themis
7.0 for Mac OS X x86 (64-bit) (November 11, 2008)
Prev by Date:
How to make dynamic strings?
Next by Date:
Re: DSolve difficulties ...
Previous by thread:
Re: How to make dynamic strings?
Next by thread:
Re: "Abort Evaluation" does not work
|