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
Beginner
812 Views

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 Solution
Les_Neilson
Valued Contributor II
812 Views
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

View solution in original post

0 Kudos
5 Replies
Les_Neilson
Valued Contributor II
812 Views
Assuming you wish to read the contents of the file change read(11 to read(100 Les
0 Kudos
elquin
Beginner
812 Views
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,*)
0 Kudos
Les_Neilson
Valued Contributor II
812 Views
The input file needs to be in the same directory as the exe you are running. Les
0 Kudos
Steven_L_Intel1
Employee
812 Views
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.
0 Kudos
Les_Neilson
Valued Contributor II
813 Views
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
0 Kudos
Reply