MathGroup Archive 1995

[Date Index] [Thread Index] [Author Index]

Search the Archive

bizarre mathematica replacement rule error

  • To: mathgroup at smc.vnet.net
  • Subject: [mg2496] bizarre mathematica replacement rule error
  • From: kant at kathmandu.scicomp.com (Elaine Kant)
  • Date: Wed, 15 Nov 1995 01:58:21 -0500

Can anyone explain the following behavior to me??  I cannot understand
why this statement crashes Mathematica, and especially why it doesn't
crash if you change the variable names used.  

This is a simplified example of a behavior I got with a replacement
rule that does make more sense than this one (and also crashed
Mathematica), so just using variable names that don't cause the crash
will not solve my real problem.

We observed the same behavior on a PC version of 2.2 as well as under
Solaris Mma 2.2 as shown here.

==========================================================
> math
Mathematica 2.2 for Solaris
Copyright 1988-94 Wolfram Research, Inc.

In[1]:= a == b /. (x_==y_ && p_ == q_) :> 6
Bus error (core dumped)
> 


> math
Mathematica 2.2 for Solaris
Copyright 1988-94 Wolfram Research, Inc.

In[1]:= m == n /. (x_==y_ && p_ == q_) :> 6

Out[1]= m == n

In[2]:= a == b /. (x_==y_ && p_ == q_) :> 6
Segmentation fault (core dumped)

==========================================================
[[[For the curious, the actual culprit was

if[resmax <= tol || ncnt >= ncntmax, return[], seq[]] /.
 		{... (x_==y_ && z_==x_) :> y==z ...}
]]]
==========================================================

Elaine Kant
SciComp Inc.
5806 Mesa Drive, Suite 250
Austin, TX 78731

email:	kant at scicomp.com
voice:  512-451-1430
fax:    512-451-1622
www:	http://www.sig.net/~scicomp/




  • Prev by Date: Re: changing defaults under Mma 2.2.2 for Windows????
  • Next by Date: pRe: Writing big files with Mathematica
  • Previous by thread: bizarre mathematica replacement rule error
  • Next by thread: (fix) bizarre mathematica replacement rule error