Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.

debugging mode problem

elquin
Einsteiger
1.193Aufrufe

I'm working in IVF 11.1.065 under Windows XP.

My code structure is shown below;

program mainimplicit none
integer ...
real...
open(100,file='input.dat',action='read',status='old')
read(11,*) problem_name
read(11,*)
read(11,*) Var1..


call ...
..


end program main
And the 'input.dat' is;
PROBLEM_NAME


VAR1
VAR1_VALUE
VAR2
VAL2_VALUE...

When I try to debug with other breakpoint, it always breaks at read(11,*) problem_name
If I do something wrong, please let me know.

0 Kudos
1 Lösung
Les_Neilson
Geschätzter Beitragender II
1.193Aufrufe
Ah yes, if you are debugging from Visual Studio look at the project properties : Configuration properties -> Debugging -> Working directory that needs to point to where your data file resides. By default (i.e. if blank) it is the directory where your project file is found. Les

Lösung in ursprünglichem Beitrag anzeigen

5 Antworten
Les_Neilson
Geschätzter Beitragender II
1.193Aufrufe
Assuming you wish to read the contents of the file change read(11 to read(100 Les
elquin
Einsteiger
1.193Aufrufe
Les Neilson wrote:

Assuming you wish to read the contents of the file
change read(11
to read(100

Les

Sorry, it's my typo. All are set to same value as read(11,file=...) read(11,*)
Les_Neilson
Geschätzter Beitragender II
1.193Aufrufe
The input file needs to be in the same directory as the exe you are running. Les
Steven_L_Intel1
Mitarbeiter
1.193Aufrufe
What Les says is true if you are running from the command line, but if you are running from Visual Studio, the default file location is the project location, not the subfolder where the EXE is.
Les_Neilson
Geschätzter Beitragender II
1.194Aufrufe
Ah yes, if you are debugging from Visual Studio look at the project properties : Configuration properties -> Debugging -> Working directory that needs to point to where your data file resides. By default (i.e. if blank) it is the directory where your project file is found. Les
Antworten