I was wondering if it is possible to run two projects at the same time in Eclipse, for example, using two different JVM instances (if that makes sense).
A bit of background: I have a project that performs relatively long experiments (6-8h). Recently, I managed to come to a certain point in development, where I could work out various strategies for improving / adding code to the project. However, at the same time I need to do some experiments, and as the experiments take a long time to complete, I would like to use a long wait time, and work on the branch code.
In short, my ideal scenario: start an experiment on an external line in Eclipse, switch to a branch and develop code / run shorter experiments on the branch when I need to test the functionality. Is this possible, or do I need to develop an alternative strategy?
Thanks in advance!
EDIT: I realized that choosing the word “test” is misleading because it can be misunderstood. I mean running the program, because it should run, not testing with JUnit or something like that. I apologize for the inconvenience.
source
share