Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
Announcements
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.

Break on data change

Nick2
New Contributor I
736 Views
In CVF there's a feature where code breaks execution whenever expression xyz changes value or becomes true. How do you do that in IVF 9.1?
0 Kudos
4 Replies
Les_Neilson
Valued Contributor II
736 Views

Right click on the break point and select Breakpoint Properties. Then click the Condition button on the dialog.

Les

0 Kudos
Nick2
New Contributor I
736 Views

program FortranConsole1
implicit none
real a,b,c
c=0
a=0.23
b=0.45
c=a+b
(conditional breakpoint when c changes) print *, 'Hello World'
print *, c
end program FortranConsole1

Doesn't seem to work :-

0 Kudos
Les_Neilson
Valued Contributor II
736 Views

Did youenter c in the edit box and tick the "has changed" radio button?

Les

0 Kudos
Nick2
New Contributor I
736 Views
Yes.
0 Kudos
Reply