Advertisement
Guest User

Untitled

a guest
Oct 1st, 2014
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.71 KB | None | 0 0
  1. Start compiling on thread 1
  2. at System.Environment.GetStackTrace(Exception e, Boolean needFileInfo)
  3. at System.Environment.get_StackTrace()
  4. at MyComp.MyApp.Model.BestModelEvaluator.Compile()
  5. at MyComp.MyApp.Model.BestModelEvaluator.Evaluate(Double[] in_array)
  6. at MyComp.MyApp.Model.BestModel.ScriptBulkEvaluate(DMyAppionary`2 dMyAppactor, Int32 dicCount)
  7. at MyComp.MyApp.Model.BestModel.BulkEvaluate(DMyAppionary`2 dMyAppactor)
  8. at MyComp.MyApp.Model.MyAppModel.Evaluate(DMyAppionary`2 actuatorValues)
  9. at __Evaluate(MyCompModel* MyComp_model, Int32 regressor_index, uArray<double>* xvalues, uArray<double>* yvalues, uArray<double>* ylower, uArray<double>* yupper, uArray<int>* yvalues_inrange)
  10. at MyCompModel.MakePlot(MyCompModel* , Int32 regressor_index)
  11. at MyAppShell.UpdateCanvasPlots(MyAppShell* , OverlayInfo* ovi, PrintInfo* print_info)
  12. at MyAppShell.UpdateCanvas(MyAppShell* )
  13. at MyAppShell.Notify(MyAppShell* , XMEvent* ev)
  14. at XMWidget.SendEvent(XMWidget* , XMEventType et, XMMailbox* mb, Int32 info, Int32 info1, Int32 info2, Int32 info3)
  15. at XMDrawingArea.DoPaint(XMDrawingArea* , xmRect* rect)
  16. at XMDrawingArea.Message(XMDrawingArea* , MessageType type)
  17. at DrawingAreaWndProc(HWND__* hWnd, UInt32 msg, UInt32 wParam, Int32 lParam)
  18. at CallWindowProcA(IntPtr , HWND__* , UInt32 , UInt32 , Int32 )
  19. at XMDrawingAreaWndProc(HWND__* hWnd, UInt32 msg, UInt32 wParam, Int32 lParam)
  20. at System.Windows.Forms.UnsafeNativeMethods.DispatchMessageA(MSG& msg)
  21. at System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
  22. at System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
  23. at System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
  24. at ecYaRlzjebO5lJJRJM.eAlVyhEdyCVdmimFqq.koonrpaTJfLI7QASS3()
  25. at ecYaRlzjebO5lJJRJM.eAlVyhEdyCVdmimFqq.e5ChpHZQl(Byte[] )
  26. at ecYaRlzjebO5lJJRJM.eAlVyhEdyCVdmimFqq.GetLicense(LicenseContext , Type , Object , Boolean )
  27. at System.ComponentModel.LicenseManager.ValidateInternalRecursive(LicenseContext context, Type type, Object instance, Boolean allowExceptions, License& license, String& licenseKey)
  28. at System.ComponentModel.LicenseManager.Validate(Type type)
  29. at MyComp.MyApp.Scripting.Script..ctor(String source, ScriptLanguage language)
  30. at MyComp.MyApp.Model.BestEvaluation.BestModelScriptCompiler.PrepareCompilation()
  31. at MyComp.MyApp.Model.BestEvaluation.BestModelScriptCompiler.CompileSynchronous()
  32. at MyComp.MyApp.Model.BestModelEvaluator.Compile()
  33. at MyComp.MyApp.Model.BestModelEvaluator.Evaluate(Double[] in_array)
  34. at MyComp.MyApp.Model.BestModel.Evaluate(DMyAppionary`2 dMyAppactor)
  35. at MyComp.MyApp.Model.MyAppModel.Evaluate(DMyAppionary`2 actuatorValues)
  36. at __Evaluate(MyCompModel* MyComp_model, uArray<double>* xvalues, uArray<double>* yvalues, SByte* comment)
  37. at MyCompModel.MakePredMyAppion(MyCompModel* )
  38. at MyAppShell.UpdateCanvasPlots(MyAppShell* , OverlayInfo* ovi, PrintInfo* print_info)
  39. at MyAppShell.UpdateCanvas(MyAppShell* )
  40. at MyAppShell.Notify(MyAppShell* , XMEvent* ev)
  41. at XMWidget.SendEvent(XMWidget* , XMEventType et)
  42. at MyAppShell.UpdateTree(MyAppShell* )
  43. at MyAppShell.Notify(MyAppShell* , XMEvent* ev)
  44. at XMWidget.SendEvent(XMWidget* , XMEventType et, XMMailbox* mb, Int32 info, Int32 info1, Int32 info2, Int32 info3)
  45. at XMTreeView.SelectItem(XMTreeView* , uTreeNode* item, Int32 send_event)
  46. at XMTreeView.WMessage(XMTreeView* , WidgetMessage msg)
  47. at XMDrawingArea.DoInput(XMDrawingArea* , Void* m, Int32 had_focus)
  48. at XMDrawingArea.Message(XMDrawingArea* , MessageType type)
  49. at DrawingAreaWndProc(HWND__* hWnd, UInt32 msg, UInt32 wParam, Int32 lParam)
  50. at CallWindowProcA(IntPtr , HWND__* , UInt32 , UInt32 , Int32 )
  51. at XMDrawingAreaWndProc(HWND__* hWnd, UInt32 msg, UInt32 wParam, Int32 lParam)
  52. at DispatchMessageA(tagMSG* )
  53. at WinMain(HINSTANCE__* hInstance, HINSTANCE__* hPrevInstance, SByte* lpCmdLine, Int32 nCmdShow)
  54. at _WinMainCRTStartup()
  55.  
  56. private bool Compile()
  57. {
  58. lock (compilerLock)
  59. {
  60. if (!isCompiled && CanCompile())
  61. {
  62. CompileSynchronous();
  63. }
  64. }
  65. return isCompiled;
  66. }
  67.  
  68. foreach (Task t in runningTasks)
  69. {
  70. try
  71. {
  72. while (t.IsCompleted == false) ;
  73. //t.Wait();
  74. t.Dispose();
  75. }
  76. catch (Exception ex)
  77. {
  78. // some logging
  79. }
  80. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement