MathGroup Archive 2010

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

Search the Archive

Re: MinCut crashes the Mathematica kernel

  • To: mathgroup at smc.vnet.net
  • Subject: [mg111508] Re: MinCut crashes the Mathematica kernel
  • From: Barrie Stokes <Barrie.Stokes at newcastle.edu.au>
  • Date: Tue, 3 Aug 2010 06:42:14 -0400 (EDT)

Hi Jon

This from the Mathematica 7 help runs fine:

In[16]:= Needs["GraphUtilities`"]

In[17]:= g = {1 -> 2, 2 -> 3, 3 -> 1, 2 -> 4, 4 -> 5, 5 -> 6, 6 -> 4}

Out[17]= {1 -> 2, 2 -> 3, 3 -> 1, 2 -> 4, 4 -> 5, 5 -> 6, 6 -> 4}

In[18]:= GraphPlot[g, VertexLabeling -> True];

In[19]:= MinCut[g, 2]

Out[19]= {{1, 3, 4}, {2, 5, 6}}

In[20]:= $Version

Out[20]= "7.0 for Microsoft Windows (64-bit) (February 18, 2009)"

Cheers

Barrie

>>> On 01/08/2010 at 6:56 pm, in message <201008010856.EAA08341 at smc.vnet.net>, Jon
Harrop <usenet at ffconsultancy.com> wrote:
> Whenever I call the MinCut function the Mathematica (7.0.1) kernel dies. 
> Even with trivial examples like:
> 
>   MinCut[{1 -> 2}, 2]
> 
> Does everyone else observe this?



  • Prev by Date: Re: graphics3d listanimate
  • Next by Date: Re: MinCut crashes the Mathematica kernel
  • Previous by thread: Re: MinCut crashes the Mathematica kernel
  • Next by thread: Re: MinCut crashes the Mathematica kernel