Exception: Visual C++ Runtime Library

The front end.
Post Reply
io5120
Posts: 1
Joined: Sat Oct 17, 2009 1:18 am

Exception: Visual C++ Runtime Library

Post by io5120 »

Hi
I'm constructing relatively complicated net. After an attempt to add new arc I'm receiving Runtime Error. "This application has requested the Runtime to terminate in an usual way." How can I avoid that?
shooltz[BayesFusion]
Site Admin
Posts: 1417
Joined: Mon Nov 26, 2007 5:51 pm

Re: Exception: Visual C++ Runtime Library

Post by shooltz[BayesFusion] »

io5120 wrote:I'm constructing relatively complicated net. After an attempt to add new arc I'm receiving Runtime Error. "This application has requested the Runtime to terminate in an usual way." How can I avoid that?
Most likely reason is that the CPT for the node with new incoming arc can't fit into available memory. Note that every CPT entry is 8 bytes, and number of entries is the product of outcome count of the node and outcome counts of all of its parents.
Post Reply