<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, "mserver.exe has stopped working" on Windows 7 x64</title>
    <link>http://www.mapleprimes.com/questions/144969-mserverexe-Has-Stopped-Working-On</link>
    <language>en-us</language>
    <copyright>2026 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Wed, 10 Jun 2026 21:36:18 GMT</lastBuildDate>
    <pubDate>Wed, 10 Jun 2026 21:36:18 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, "mserver.exe has stopped working" on Windows 7 x64</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, "mserver.exe has stopped working" on Windows 7 x64</title>
      <link>http://www.mapleprimes.com/questions/144969-mserverexe-Has-Stopped-Working-On</link>
    </image>
    <item>
      <title>At what point does the error occur?</title>
      <link>http://www.mapleprimes.com/questions/144969-mserverexe-Has-Stopped-Working-On?ref=Feed:MaplePrimes:"mserver.exe has stopped working" on Windows 7 x64:Comments#answer144971</link>
      <itunes:summary>&lt;p&gt;Does the error occur in &lt;strong&gt;CalculateMatrix&lt;/strong&gt; or after? Put a &lt;strong&gt;print&lt;/strong&gt; statement after the &lt;strong&gt;CalculateMatrix&lt;/strong&gt; call to find out.&lt;/p&gt;
&lt;p&gt;It is a system of linear equations. It would be much more efficient to solve it with matrix operations (&lt;em&gt;i.e. &lt;/em&gt;&lt;strong&gt;LinearAlgebra:-LinearSolve&lt;/strong&gt;). Would a floating-point solution be acceptable? That would use much less memory.&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Does the error occur in &lt;strong&gt;CalculateMatrix&lt;/strong&gt; or after? Put a &lt;strong&gt;print&lt;/strong&gt; statement after the &lt;strong&gt;CalculateMatrix&lt;/strong&gt; call to find out.&lt;/p&gt;
&lt;p&gt;It is a system of linear equations. It would be much more efficient to solve it with matrix operations (&lt;em&gt;i.e. &lt;/em&gt;&lt;strong&gt;LinearAlgebra:-LinearSolve&lt;/strong&gt;). Would a floating-point solution be acceptable? That would use much less memory.&lt;/p&gt;</description>
      <guid>144971</guid>
      <pubDate>Sat, 23 Mar 2013 18:45:44 Z</pubDate>
      <itunes:author>Carl Love</itunes:author>
      <author>Carl Love</author>
    </item>
    <item>
      <title>Why exact rational arithmetic?</title>
      <link>http://www.mapleprimes.com/questions/144969-mserverexe-Has-Stopped-Working-On?ref=Feed:MaplePrimes:"mserver.exe has stopped working" on Windows 7 x64:Comments#answer145572</link>
      <itunes:summary>&lt;p&gt;In your program, what is the purpose of the following lines?&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;if type(y, rational) = false then&lt;/strong&gt;&lt;br&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp; y:= evalf(y);&lt;/strong&gt;&lt;br&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp; y:= convert(y, rational)&lt;/strong&gt;&lt;br&gt;&lt;strong&gt;end if;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;In other words, why are you using exact rational arithmetic, even after floating point approximation?&lt;/p&gt;
&lt;p&gt;I ran your code for &lt;strong&gt;m=50&lt;/strong&gt;, and the answers have more than 10000 digits in the numerator and denominator. It could be over a million digits for &lt;strong&gt;m=300&lt;/strong&gt;. &lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;In your program, what is the purpose of the following lines?&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;if type(y, rational) = false then&lt;/strong&gt;&lt;br&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp; y:= evalf(y);&lt;/strong&gt;&lt;br&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp; y:= convert(y, rational)&lt;/strong&gt;&lt;br&gt;&lt;strong&gt;end if;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;In other words, why are you using exact rational arithmetic, even after floating point approximation?&lt;/p&gt;
&lt;p&gt;I ran your code for &lt;strong&gt;m=50&lt;/strong&gt;, and the answers have more than 10000 digits in the numerator and denominator. It could be over a million digits for &lt;strong&gt;m=300&lt;/strong&gt;. &lt;/p&gt;</description>
      <guid>145572</guid>
      <pubDate>Sat, 06 Apr 2013 17:44:56 Z</pubDate>
      <itunes:author>Carl Love</itunes:author>
      <author>Carl Love</author>
    </item>
    <item>
      <title>Updated hardware floating-point code</title>
      <link>http://www.mapleprimes.com/questions/144969-mserverexe-Has-Stopped-Working-On?ref=Feed:MaplePrimes:"mserver.exe has stopped working" on Windows 7 x64:Comments#answer145576</link>
      <itunes:summary>&lt;p&gt;Here (attached) is your code with my (minor) modifications to make it run in hardware floating point. I ran it up to size 512 in less than a minute, and got reasonable accuracy (norm of the residuals 1e-16 seems reasonable to me). Let me know if this fulfills your needs.&lt;/p&gt;
&lt;p&gt;&lt;a href="/view.aspx?sf=145576/457918/Markov_a2.mw"&gt;Markov_a2.mw&lt;/a&gt;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Here (attached) is your code with my (minor) modifications to make it run in hardware floating point. I ran it up to size 512 in less than a minute, and got reasonable accuracy (norm of the residuals 1e-16 seems reasonable to me). Let me know if this fulfills your needs.&lt;/p&gt;
&lt;p&gt;&lt;a href="/view.aspx?sf=145576/457918/Markov_a2.mw"&gt;Markov_a2.mw&lt;/a&gt;&lt;/p&gt;</description>
      <guid>145576</guid>
      <pubDate>Sat, 06 Apr 2013 21:01:13 Z</pubDate>
      <itunes:author>Carl Love</itunes:author>
      <author>Carl Love</author>
    </item>
    <item>
      <title>After, in the solve() function</title>
      <link>http://www.mapleprimes.com/questions/144969-mserverexe-Has-Stopped-Working-On?ref=Feed:MaplePrimes:"mserver.exe has stopped working" on Windows 7 x64:Comments#comment144976</link>
      <itunes:summary>&lt;p&gt;Hi, Carl! Thanks for your help.&lt;/p&gt;
&lt;p&gt;I have printed some information as you said and I'm sure the error occur after &lt;strong&gt;CalculateMatrix&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;I will try to modify my programusing&lt;strong&gt; LinearSolve&lt;/strong&gt; and see if it works. Thanks anyway. &lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Hi, Carl! Thanks for your help.&lt;/p&gt;
&lt;p&gt;I have printed some information as you said and I'm sure the error occur after &lt;strong&gt;CalculateMatrix&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;I will try to modify my programusing&lt;strong&gt; LinearSolve&lt;/strong&gt; and see if it works. Thanks anyway. &lt;/p&gt;</description>
      <guid>144976</guid>
      <pubDate>Sat, 23 Mar 2013 22:59:41 Z</pubDate>
      <itunes:author>wb_jerry</itunes:author>
      <author>wb_jerry</author>
    </item>
    <item>
      <title>It's doable</title>
      <link>http://www.mapleprimes.com/questions/144969-mserverexe-Has-Stopped-Working-On?ref=Feed:MaplePrimes:"mserver.exe has stopped working" on Windows 7 x64:Comments#comment144980</link>
      <itunes:summary>&lt;p&gt;&lt;a href="http://www.mapleprimes.com/questions/144969-mserverexe-Has-Stopped-Working-On#comment144976"&gt;@wb_jerry&lt;/a&gt; Okay, then the problem is almost certainly solvable. I ask again: Is a floating-point solution acceptable?&lt;/p&gt;
&lt;p&gt;What do you mean by "anyway"? Didn't I help you?&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;&lt;a href="http://www.mapleprimes.com/questions/144969-mserverexe-Has-Stopped-Working-On#comment144976"&gt;@wb_jerry&lt;/a&gt; Okay, then the problem is almost certainly solvable. I ask again: Is a floating-point solution acceptable?&lt;/p&gt;
&lt;p&gt;What do you mean by "anyway"? Didn't I help you?&lt;/p&gt;</description>
      <guid>144980</guid>
      <pubDate>Sat, 23 Mar 2013 23:41:22 Z</pubDate>
      <itunes:author>Carl Love</itunes:author>
      <author>Carl Love</author>
    </item>
    <item>
      <title>Thanks a lot</title>
      <link>http://www.mapleprimes.com/questions/144969-mserverexe-Has-Stopped-Working-On?ref=Feed:MaplePrimes:"mserver.exe has stopped working" on Windows 7 x64:Comments#comment144993</link>
      <itunes:summary>&lt;p&gt;&lt;a href="http://www.mapleprimes.com/questions/144969-mserverexe-Has-Stopped-Working-On#comment144980"&gt;@Carl Love&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Floating-point solution is acceptable.&lt;/p&gt;
&lt;p&gt;Of course you helped me a lot. Really sorry for the misunderstanding caused by my poor English.&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;&lt;a href="http://www.mapleprimes.com/questions/144969-mserverexe-Has-Stopped-Working-On#comment144980"&gt;@Carl Love&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Floating-point solution is acceptable.&lt;/p&gt;
&lt;p&gt;Of course you helped me a lot. Really sorry for the misunderstanding caused by my poor English.&lt;/p&gt;</description>
      <guid>144993</guid>
      <pubDate>Sun, 24 Mar 2013 07:55:16 Z</pubDate>
      <itunes:author>wb_jerry</itunes:author>
      <author>wb_jerry</author>
    </item>
  </channel>
</rss>