- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I've been trying to set a conditional breakpoint with a boolean operator but I just can't make it work.
The following works (i.e. the breakpoint is triggered):
BandGeos(BandIndex).strBundleSize(1) == '250 '
But if I add a second condition the breakpoint is not triggered:
(BandGeos(BandIndex).strBundleSize(1) == '250 ') && (BandGeos(BandIndex).strBundleSize(2) == '230 ')
What am I doing wrong?
Regards,
Philippe
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
As bmchenry said, you have to use a Fortran statement for your conditional breakpoint.
&& wont work because it C style, you have to use .and. , .or. , .ge., >=etc.
Markus
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
not sure bout that && operator
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
As bmchenry said, you have to use a Fortran statement for your conditional breakpoint.
&& wont work because it C style, you have to use .and. , .or. , .ge., >=etc.
Markus
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks all,
Philippe

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