How to remove this runtime error in omnet











up vote
-1
down vote

favorite












I am using omnet++ 4.6, sumo-0.22.0 and veins-4a2 to simulate a few routing protocols. The code is perfect i.e. without any errors and compiles without any problem. When I try to run the simulation, I get the following error:



(((Omnet Console Output)))



Starting...

$ cd C:/sim/veins-4a2/examples/veins
$ ../../../omnetpp-4.6/bin/opp_run.exe -r 0 -n .;../../src/veins --tkenv-image-path=../../images -l ../../src/veins omnetpp.ini

OMNeT++ Discrete Event Simulation (C) 1992-2014 Andras Varga, OpenSim Ltd.
Version: 4.6, build: 141202-f785492, edition: Academic Public License -- NOT FOR COMMERCIAL USE
See the license for distribution terms and warranty disclaimer
Setting up Tkenv...
Loading NED files from .: 2
Loading NED files from ../../src/veins: 34
Loading NED files from C:simveins-4a2examplesveins: 2

Loading images from C:simveins-4a2images: *: 0 status/*: 6
Loading images from C:simomnetpp-4.6images: *: 0 abstract/*: 90 background/*: 4 block/*: 320 device/*: 195 logo/*: 1 maps/*: 9 misc/*: 70 msg/*: 55 old/*: 111 status/*: 28

Plugin path: ./plugins

RUNTIME ERROR. A cRuntimeError exception is about to be thrown, and you requested (by setting debug-on-errors=true in the ini file) that errors abort execution and break into the debugger.

You should now probably be running the simulation under gdb or another debugger. The simulation kernel will now raise a SIGABRT signal which will get you into the debugger. If you are not running under a debugger, you can still use the core dump for post-mortem debugging. Once in the debugger, view the call stack (in gdb: "bt" command) to see the context of the runtime error.

<!> Error in module (Veins::TraCIScenarioManagerLaunchd) FranciscoScenario.manager (id=6) at event #1, t=0: Model error: Connection to TraCI server lost. Check your server's log. Error message: 10054: Unknown error.

TRAPPING on the exception above, due to a debug-on-errors=true configuration option. Is your debugger ready?

Simulation terminated with exit code: -2147483645
Working directory: C:/sim/veins-4a2/examples/veins
Command line: ../../../omnetpp-4.6/bin/opp_run.exe -r 0 -n .;../../src/veins --tkenv-image-path=../../images -l ../../src/veins omnetpp.ini

Environment variables:
OMNETPP_ROOT=C:/sim/omnetpp-4.6/

================================================================================================================================================================================================
(((MinGW output)))
Logging to c:usersgowher~1.parappdatalocaltemp/sumo-launchd.log
Listening on port 9999
Connection from 127.0.0.1 on port 56147
Handling connection from 127.0.0.1 on port 56147
Got TraCI message of length 2
Got TraCI command of length 1
Got TraCI command 0x0
Got CMD_GETVERSION
Got TraCI message of length 275
Got TraCI command of length 270
Got TraCI command 0x75
Got CMD_FILE_SEND for "sumo-launchd.launch.xml"
Got CMD_FILE_SEND with data "<launch>
<copy file="Karrad.net.xml"/>
<copy file="Karrad.rou.xml"/>
<copy file="Karrad.poly.xml"/>
<copy file="erlangen.sumo.cfg" type="config"/>
<basedir path="C:/sim/veins-4a2/examples/veins/"/>
<seed value="0"/>
</launch>
"
Creating temporary directory...
Temporary dir is c:usersgowher~1.parappdatalocaltemp/sumo-launchd-tmp-xgouix
Base dir is C:/sim/veins-4a2/examples/veins/
Seed is 0
Finding free port number...
...found port 56148
Starting SUMO (C:/sim/sumo-0.22.0/bin/sumo-gui.exe -c erlangen.sumo.cfg) on port 56148, seed 0
Releasing lock on port
Aborting on error: release unlocked lock
Closing connection from 127.0.0.1 on port 56147


Any help in this regard is appreciated.
Thank you in advance.










share|improve this question
























  • Could you show your sumo-launchd log?
    – Jerzy D.
    Nov 8 at 11:04










  • @Jerzy D. Thank you for your reply. Sure, here is the link to log file drive.google.com/file/d/13CcSot-4zOEm2olGrO14C61tR4RUh_P6/…
    – Ricky
    Nov 11 at 9:05












  • The log file you posted shows a different error message than the one in your question. Which one is correct?
    – Christoph Sommer
    Nov 13 at 6:54










  • @Christoph Sommer: All the three outputs (omnet console output, MinGW output and sumo-launched log) are from the same simulation. Can you please tell me what could be the reason behind these errors even though they are different? Also, if possible, what can I do to remove these errors? Thank you in advance.
    – Ricky
    Nov 13 at 8:49












  • The last message in the .log file you linked from Google drive is Could not start SUMO (C:/sim/sumo-0.22.0/bin/sumo-gui.exe -c erlangen.sumo.cfg): [Error 2] The system cannot find the file specified. Most likely, you did not install SUMO in C:simsumo-0.22.0 or you need to give the path as /c/sim/sumo-0.22.0/bin/sumo-gui.exe for Windows to find SUMO.
    – Christoph Sommer
    Nov 13 at 10:05















up vote
-1
down vote

favorite












I am using omnet++ 4.6, sumo-0.22.0 and veins-4a2 to simulate a few routing protocols. The code is perfect i.e. without any errors and compiles without any problem. When I try to run the simulation, I get the following error:



(((Omnet Console Output)))



Starting...

$ cd C:/sim/veins-4a2/examples/veins
$ ../../../omnetpp-4.6/bin/opp_run.exe -r 0 -n .;../../src/veins --tkenv-image-path=../../images -l ../../src/veins omnetpp.ini

OMNeT++ Discrete Event Simulation (C) 1992-2014 Andras Varga, OpenSim Ltd.
Version: 4.6, build: 141202-f785492, edition: Academic Public License -- NOT FOR COMMERCIAL USE
See the license for distribution terms and warranty disclaimer
Setting up Tkenv...
Loading NED files from .: 2
Loading NED files from ../../src/veins: 34
Loading NED files from C:simveins-4a2examplesveins: 2

Loading images from C:simveins-4a2images: *: 0 status/*: 6
Loading images from C:simomnetpp-4.6images: *: 0 abstract/*: 90 background/*: 4 block/*: 320 device/*: 195 logo/*: 1 maps/*: 9 misc/*: 70 msg/*: 55 old/*: 111 status/*: 28

Plugin path: ./plugins

RUNTIME ERROR. A cRuntimeError exception is about to be thrown, and you requested (by setting debug-on-errors=true in the ini file) that errors abort execution and break into the debugger.

You should now probably be running the simulation under gdb or another debugger. The simulation kernel will now raise a SIGABRT signal which will get you into the debugger. If you are not running under a debugger, you can still use the core dump for post-mortem debugging. Once in the debugger, view the call stack (in gdb: "bt" command) to see the context of the runtime error.

<!> Error in module (Veins::TraCIScenarioManagerLaunchd) FranciscoScenario.manager (id=6) at event #1, t=0: Model error: Connection to TraCI server lost. Check your server's log. Error message: 10054: Unknown error.

TRAPPING on the exception above, due to a debug-on-errors=true configuration option. Is your debugger ready?

Simulation terminated with exit code: -2147483645
Working directory: C:/sim/veins-4a2/examples/veins
Command line: ../../../omnetpp-4.6/bin/opp_run.exe -r 0 -n .;../../src/veins --tkenv-image-path=../../images -l ../../src/veins omnetpp.ini

Environment variables:
OMNETPP_ROOT=C:/sim/omnetpp-4.6/

================================================================================================================================================================================================
(((MinGW output)))
Logging to c:usersgowher~1.parappdatalocaltemp/sumo-launchd.log
Listening on port 9999
Connection from 127.0.0.1 on port 56147
Handling connection from 127.0.0.1 on port 56147
Got TraCI message of length 2
Got TraCI command of length 1
Got TraCI command 0x0
Got CMD_GETVERSION
Got TraCI message of length 275
Got TraCI command of length 270
Got TraCI command 0x75
Got CMD_FILE_SEND for "sumo-launchd.launch.xml"
Got CMD_FILE_SEND with data "<launch>
<copy file="Karrad.net.xml"/>
<copy file="Karrad.rou.xml"/>
<copy file="Karrad.poly.xml"/>
<copy file="erlangen.sumo.cfg" type="config"/>
<basedir path="C:/sim/veins-4a2/examples/veins/"/>
<seed value="0"/>
</launch>
"
Creating temporary directory...
Temporary dir is c:usersgowher~1.parappdatalocaltemp/sumo-launchd-tmp-xgouix
Base dir is C:/sim/veins-4a2/examples/veins/
Seed is 0
Finding free port number...
...found port 56148
Starting SUMO (C:/sim/sumo-0.22.0/bin/sumo-gui.exe -c erlangen.sumo.cfg) on port 56148, seed 0
Releasing lock on port
Aborting on error: release unlocked lock
Closing connection from 127.0.0.1 on port 56147


Any help in this regard is appreciated.
Thank you in advance.










share|improve this question
























  • Could you show your sumo-launchd log?
    – Jerzy D.
    Nov 8 at 11:04










  • @Jerzy D. Thank you for your reply. Sure, here is the link to log file drive.google.com/file/d/13CcSot-4zOEm2olGrO14C61tR4RUh_P6/…
    – Ricky
    Nov 11 at 9:05












  • The log file you posted shows a different error message than the one in your question. Which one is correct?
    – Christoph Sommer
    Nov 13 at 6:54










  • @Christoph Sommer: All the three outputs (omnet console output, MinGW output and sumo-launched log) are from the same simulation. Can you please tell me what could be the reason behind these errors even though they are different? Also, if possible, what can I do to remove these errors? Thank you in advance.
    – Ricky
    Nov 13 at 8:49












  • The last message in the .log file you linked from Google drive is Could not start SUMO (C:/sim/sumo-0.22.0/bin/sumo-gui.exe -c erlangen.sumo.cfg): [Error 2] The system cannot find the file specified. Most likely, you did not install SUMO in C:simsumo-0.22.0 or you need to give the path as /c/sim/sumo-0.22.0/bin/sumo-gui.exe for Windows to find SUMO.
    – Christoph Sommer
    Nov 13 at 10:05













up vote
-1
down vote

favorite









up vote
-1
down vote

favorite











I am using omnet++ 4.6, sumo-0.22.0 and veins-4a2 to simulate a few routing protocols. The code is perfect i.e. without any errors and compiles without any problem. When I try to run the simulation, I get the following error:



(((Omnet Console Output)))



Starting...

$ cd C:/sim/veins-4a2/examples/veins
$ ../../../omnetpp-4.6/bin/opp_run.exe -r 0 -n .;../../src/veins --tkenv-image-path=../../images -l ../../src/veins omnetpp.ini

OMNeT++ Discrete Event Simulation (C) 1992-2014 Andras Varga, OpenSim Ltd.
Version: 4.6, build: 141202-f785492, edition: Academic Public License -- NOT FOR COMMERCIAL USE
See the license for distribution terms and warranty disclaimer
Setting up Tkenv...
Loading NED files from .: 2
Loading NED files from ../../src/veins: 34
Loading NED files from C:simveins-4a2examplesveins: 2

Loading images from C:simveins-4a2images: *: 0 status/*: 6
Loading images from C:simomnetpp-4.6images: *: 0 abstract/*: 90 background/*: 4 block/*: 320 device/*: 195 logo/*: 1 maps/*: 9 misc/*: 70 msg/*: 55 old/*: 111 status/*: 28

Plugin path: ./plugins

RUNTIME ERROR. A cRuntimeError exception is about to be thrown, and you requested (by setting debug-on-errors=true in the ini file) that errors abort execution and break into the debugger.

You should now probably be running the simulation under gdb or another debugger. The simulation kernel will now raise a SIGABRT signal which will get you into the debugger. If you are not running under a debugger, you can still use the core dump for post-mortem debugging. Once in the debugger, view the call stack (in gdb: "bt" command) to see the context of the runtime error.

<!> Error in module (Veins::TraCIScenarioManagerLaunchd) FranciscoScenario.manager (id=6) at event #1, t=0: Model error: Connection to TraCI server lost. Check your server's log. Error message: 10054: Unknown error.

TRAPPING on the exception above, due to a debug-on-errors=true configuration option. Is your debugger ready?

Simulation terminated with exit code: -2147483645
Working directory: C:/sim/veins-4a2/examples/veins
Command line: ../../../omnetpp-4.6/bin/opp_run.exe -r 0 -n .;../../src/veins --tkenv-image-path=../../images -l ../../src/veins omnetpp.ini

Environment variables:
OMNETPP_ROOT=C:/sim/omnetpp-4.6/

================================================================================================================================================================================================
(((MinGW output)))
Logging to c:usersgowher~1.parappdatalocaltemp/sumo-launchd.log
Listening on port 9999
Connection from 127.0.0.1 on port 56147
Handling connection from 127.0.0.1 on port 56147
Got TraCI message of length 2
Got TraCI command of length 1
Got TraCI command 0x0
Got CMD_GETVERSION
Got TraCI message of length 275
Got TraCI command of length 270
Got TraCI command 0x75
Got CMD_FILE_SEND for "sumo-launchd.launch.xml"
Got CMD_FILE_SEND with data "<launch>
<copy file="Karrad.net.xml"/>
<copy file="Karrad.rou.xml"/>
<copy file="Karrad.poly.xml"/>
<copy file="erlangen.sumo.cfg" type="config"/>
<basedir path="C:/sim/veins-4a2/examples/veins/"/>
<seed value="0"/>
</launch>
"
Creating temporary directory...
Temporary dir is c:usersgowher~1.parappdatalocaltemp/sumo-launchd-tmp-xgouix
Base dir is C:/sim/veins-4a2/examples/veins/
Seed is 0
Finding free port number...
...found port 56148
Starting SUMO (C:/sim/sumo-0.22.0/bin/sumo-gui.exe -c erlangen.sumo.cfg) on port 56148, seed 0
Releasing lock on port
Aborting on error: release unlocked lock
Closing connection from 127.0.0.1 on port 56147


Any help in this regard is appreciated.
Thank you in advance.










share|improve this question















I am using omnet++ 4.6, sumo-0.22.0 and veins-4a2 to simulate a few routing protocols. The code is perfect i.e. without any errors and compiles without any problem. When I try to run the simulation, I get the following error:



(((Omnet Console Output)))



Starting...

$ cd C:/sim/veins-4a2/examples/veins
$ ../../../omnetpp-4.6/bin/opp_run.exe -r 0 -n .;../../src/veins --tkenv-image-path=../../images -l ../../src/veins omnetpp.ini

OMNeT++ Discrete Event Simulation (C) 1992-2014 Andras Varga, OpenSim Ltd.
Version: 4.6, build: 141202-f785492, edition: Academic Public License -- NOT FOR COMMERCIAL USE
See the license for distribution terms and warranty disclaimer
Setting up Tkenv...
Loading NED files from .: 2
Loading NED files from ../../src/veins: 34
Loading NED files from C:simveins-4a2examplesveins: 2

Loading images from C:simveins-4a2images: *: 0 status/*: 6
Loading images from C:simomnetpp-4.6images: *: 0 abstract/*: 90 background/*: 4 block/*: 320 device/*: 195 logo/*: 1 maps/*: 9 misc/*: 70 msg/*: 55 old/*: 111 status/*: 28

Plugin path: ./plugins

RUNTIME ERROR. A cRuntimeError exception is about to be thrown, and you requested (by setting debug-on-errors=true in the ini file) that errors abort execution and break into the debugger.

You should now probably be running the simulation under gdb or another debugger. The simulation kernel will now raise a SIGABRT signal which will get you into the debugger. If you are not running under a debugger, you can still use the core dump for post-mortem debugging. Once in the debugger, view the call stack (in gdb: "bt" command) to see the context of the runtime error.

<!> Error in module (Veins::TraCIScenarioManagerLaunchd) FranciscoScenario.manager (id=6) at event #1, t=0: Model error: Connection to TraCI server lost. Check your server's log. Error message: 10054: Unknown error.

TRAPPING on the exception above, due to a debug-on-errors=true configuration option. Is your debugger ready?

Simulation terminated with exit code: -2147483645
Working directory: C:/sim/veins-4a2/examples/veins
Command line: ../../../omnetpp-4.6/bin/opp_run.exe -r 0 -n .;../../src/veins --tkenv-image-path=../../images -l ../../src/veins omnetpp.ini

Environment variables:
OMNETPP_ROOT=C:/sim/omnetpp-4.6/

================================================================================================================================================================================================
(((MinGW output)))
Logging to c:usersgowher~1.parappdatalocaltemp/sumo-launchd.log
Listening on port 9999
Connection from 127.0.0.1 on port 56147
Handling connection from 127.0.0.1 on port 56147
Got TraCI message of length 2
Got TraCI command of length 1
Got TraCI command 0x0
Got CMD_GETVERSION
Got TraCI message of length 275
Got TraCI command of length 270
Got TraCI command 0x75
Got CMD_FILE_SEND for "sumo-launchd.launch.xml"
Got CMD_FILE_SEND with data "<launch>
<copy file="Karrad.net.xml"/>
<copy file="Karrad.rou.xml"/>
<copy file="Karrad.poly.xml"/>
<copy file="erlangen.sumo.cfg" type="config"/>
<basedir path="C:/sim/veins-4a2/examples/veins/"/>
<seed value="0"/>
</launch>
"
Creating temporary directory...
Temporary dir is c:usersgowher~1.parappdatalocaltemp/sumo-launchd-tmp-xgouix
Base dir is C:/sim/veins-4a2/examples/veins/
Seed is 0
Finding free port number...
...found port 56148
Starting SUMO (C:/sim/sumo-0.22.0/bin/sumo-gui.exe -c erlangen.sumo.cfg) on port 56148, seed 0
Releasing lock on port
Aborting on error: release unlocked lock
Closing connection from 127.0.0.1 on port 56147


Any help in this regard is appreciated.
Thank you in advance.







omnet++ veins sumo plexe-veins






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 12 at 12:34

























asked Nov 7 at 18:29









Ricky

83




83












  • Could you show your sumo-launchd log?
    – Jerzy D.
    Nov 8 at 11:04










  • @Jerzy D. Thank you for your reply. Sure, here is the link to log file drive.google.com/file/d/13CcSot-4zOEm2olGrO14C61tR4RUh_P6/…
    – Ricky
    Nov 11 at 9:05












  • The log file you posted shows a different error message than the one in your question. Which one is correct?
    – Christoph Sommer
    Nov 13 at 6:54










  • @Christoph Sommer: All the three outputs (omnet console output, MinGW output and sumo-launched log) are from the same simulation. Can you please tell me what could be the reason behind these errors even though they are different? Also, if possible, what can I do to remove these errors? Thank you in advance.
    – Ricky
    Nov 13 at 8:49












  • The last message in the .log file you linked from Google drive is Could not start SUMO (C:/sim/sumo-0.22.0/bin/sumo-gui.exe -c erlangen.sumo.cfg): [Error 2] The system cannot find the file specified. Most likely, you did not install SUMO in C:simsumo-0.22.0 or you need to give the path as /c/sim/sumo-0.22.0/bin/sumo-gui.exe for Windows to find SUMO.
    – Christoph Sommer
    Nov 13 at 10:05


















  • Could you show your sumo-launchd log?
    – Jerzy D.
    Nov 8 at 11:04










  • @Jerzy D. Thank you for your reply. Sure, here is the link to log file drive.google.com/file/d/13CcSot-4zOEm2olGrO14C61tR4RUh_P6/…
    – Ricky
    Nov 11 at 9:05












  • The log file you posted shows a different error message than the one in your question. Which one is correct?
    – Christoph Sommer
    Nov 13 at 6:54










  • @Christoph Sommer: All the three outputs (omnet console output, MinGW output and sumo-launched log) are from the same simulation. Can you please tell me what could be the reason behind these errors even though they are different? Also, if possible, what can I do to remove these errors? Thank you in advance.
    – Ricky
    Nov 13 at 8:49












  • The last message in the .log file you linked from Google drive is Could not start SUMO (C:/sim/sumo-0.22.0/bin/sumo-gui.exe -c erlangen.sumo.cfg): [Error 2] The system cannot find the file specified. Most likely, you did not install SUMO in C:simsumo-0.22.0 or you need to give the path as /c/sim/sumo-0.22.0/bin/sumo-gui.exe for Windows to find SUMO.
    – Christoph Sommer
    Nov 13 at 10:05
















Could you show your sumo-launchd log?
– Jerzy D.
Nov 8 at 11:04




Could you show your sumo-launchd log?
– Jerzy D.
Nov 8 at 11:04












@Jerzy D. Thank you for your reply. Sure, here is the link to log file drive.google.com/file/d/13CcSot-4zOEm2olGrO14C61tR4RUh_P6/…
– Ricky
Nov 11 at 9:05






@Jerzy D. Thank you for your reply. Sure, here is the link to log file drive.google.com/file/d/13CcSot-4zOEm2olGrO14C61tR4RUh_P6/…
– Ricky
Nov 11 at 9:05














The log file you posted shows a different error message than the one in your question. Which one is correct?
– Christoph Sommer
Nov 13 at 6:54




The log file you posted shows a different error message than the one in your question. Which one is correct?
– Christoph Sommer
Nov 13 at 6:54












@Christoph Sommer: All the three outputs (omnet console output, MinGW output and sumo-launched log) are from the same simulation. Can you please tell me what could be the reason behind these errors even though they are different? Also, if possible, what can I do to remove these errors? Thank you in advance.
– Ricky
Nov 13 at 8:49






@Christoph Sommer: All the three outputs (omnet console output, MinGW output and sumo-launched log) are from the same simulation. Can you please tell me what could be the reason behind these errors even though they are different? Also, if possible, what can I do to remove these errors? Thank you in advance.
– Ricky
Nov 13 at 8:49














The last message in the .log file you linked from Google drive is Could not start SUMO (C:/sim/sumo-0.22.0/bin/sumo-gui.exe -c erlangen.sumo.cfg): [Error 2] The system cannot find the file specified. Most likely, you did not install SUMO in C:simsumo-0.22.0 or you need to give the path as /c/sim/sumo-0.22.0/bin/sumo-gui.exe for Windows to find SUMO.
– Christoph Sommer
Nov 13 at 10:05




The last message in the .log file you linked from Google drive is Could not start SUMO (C:/sim/sumo-0.22.0/bin/sumo-gui.exe -c erlangen.sumo.cfg): [Error 2] The system cannot find the file specified. Most likely, you did not install SUMO in C:simsumo-0.22.0 or you need to give the path as /c/sim/sumo-0.22.0/bin/sumo-gui.exe for Windows to find SUMO.
– Christoph Sommer
Nov 13 at 10:05

















active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53195619%2fhow-to-remove-this-runtime-error-in-omnet%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53195619%2fhow-to-remove-this-runtime-error-in-omnet%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







這個網誌中的熱門文章

Tangent Lines Diagram Along Smooth Curve

Yusuf al-Mu'taman ibn Hud

Zucchini