- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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?
Link Copied
4 Replies
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Right click on the break point and select Breakpoint Properties. Then click the Condition button on the dialog.
Les
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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 :-
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Did youenter c in the edit box and tick the "has changed" radio button?
Les
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Yes.

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page