JiscMail Logo
Email discussion lists for the UK Education and Research communities

Help for COMP-FORTRAN-90 Archives


COMP-FORTRAN-90 Archives

COMP-FORTRAN-90 Archives


COMP-FORTRAN-90@JISCMAIL.AC.UK


View:

Message:

[

First

|

Previous

|

Next

|

Last

]

By Topic:

[

First

|

Previous

|

Next

|

Last

]

By Author:

[

First

|

Previous

|

Next

|

Last

]

Font:

Monospaced Font

LISTSERV Archives

LISTSERV Archives

COMP-FORTRAN-90 Home

COMP-FORTRAN-90 Home

COMP-FORTRAN-90  1997

COMP-FORTRAN-90 1997

Options

Subscribe or Unsubscribe

Subscribe or Unsubscribe

Log In

Log In

Get Password

Get Password

Subject:

Re: IF evaluation

From:

Roger Glover <[log in to unmask]>

Reply-To:

Roger Glover <[log in to unmask]>

Date:

Thu, 04 Dec 1997 15:41:12 -0600

Content-Type:

text/plain

Parts/Attachments:

Parts/Attachments

text/plain (140 lines)

Harvey Richardson wrote:
>
> > Steve Schlaifer wrote:
> > >
> > > In message <[log in to unmask]>, [log in to unmask] writ
> > > es:
> > > > Because many programmers expect short circuiting behavior for .AND., leading
> > > > to erroneous code that usually works,
>
> Surely not, I would have thought that those programmers clever enough
> to know that short circuit behaviour exists in a given language will
> not assume it of other languages.

I once held exactly that view. However, as I encounter more and
more scientific and engineering applications programmers who are
learning Fortran as a second language after C, and/or C++, I have
adjusted my view.

They have learned a certain view of the world that has a certain
kind of internal consistancy and logic, and they cannot help
making the sorts of assumptions that fit that world view and that
sense of logic. They expect boolean-valued operations to be as
consistant across languages as numeric operations. Perhaps they
expect such operations to be even more consistant, since booleans
are simpler than numbers, more discrete, and more universal across
computers.


> > > > and because the current syntax for
> > > > specifying short circuiting, i.e.,
> > > >
> > > > IF (K .GT. 0) THEN
> > > > IF (X(K) .GT. 0.) THEN
> > > > . . .
> > > >
> > > > can lead to duplicated code if an ELSE branch is required,
>
> Why?

Will a code template suffice?

Desired code:
if( K > 0 .short-circuit-and. X(K) > 0 ) then
.... !code for short-circuit true case
else
.... !code for short-circuit false case
end if

Straightforward Fortran 77 code:
if( K > 0 ) then
if( X(K) > 0 ) then
.... !code for short-circuit true case
else
.... !code for short-circuit false case
end if
else
.... !duplicate code for short-circuit false case
end if !^^^^^^^^^ ^^^^


> At least it is immediately understandable.

Immediately "parsable" I would buy. Immediately "understandable"
seems much less likely to me. IMO, The code above is only
"understandable" after you realize that someone (maybe yourself
two years ago?) wrote exact duplicate code for the "false case",
and then only after you realize that he (yourself - 2yrs.?) did
it on purpose.


> > > > I have sometimes
> > > > wished for more direct way to express short circuiting behavior in Fortran.
> > >
> > > Is there something unacceptable about:
>
> [cryptic example 1]
>
> > In the same spirit, what is wrong with this?:
>
> [more cryptic example 2]

If you could detail what you find cryptic in these examples it
would greatly help me in constructing examples like this in the
future.

Steve's example seems particularly straightforward to me, as it
uses simple Fortran 77 syntax. That said, let me take a stab at
demystifying my example a little. I believe I could have made
it more readable by separating out the complicated merge-based
indexing expression:

LFLAG = K > 0
KSAFE = merge( K, 1, LFLAG )
! ^ use "lbound(X, 1)" to be perfectly safe
        IF( LFLAG .AND. X( KSAFE ) > 0 ) THEN
          ...
        ELSE
          ...
        ENDIF


> I get more convinced that it is important to write code that is
> readable, maintainable and less prone to bugs.

To me, Steve's code was as easy to parse ("read") as the code you
seem to prefer. I would be interested in knowing what parts you
thought "cryptic."

My example is not as "immediately parsible" as the code you seem
to prefer, but I find it more maintainable in the following ways:
- It avoids duplicate code for "short-circuit false" case
- It avoids nesting block-IF expressions


> (Of course this
> gets tricky in the pursuit of performance.) I don't think that
> some of these suggestions would help me.

Well-spoken. If you find such code unusable, don't use it;
however, I suspect your criteria are rather subjective. Again,
any insight you can give me into those criteria would be helpful.


> > Something like the proposed ".ANDTHEN." might be useful in more
> > esoteric cases, but this case is really not that hard to handle.
>
> At least call it .SCAND. (Short Circuit AND).

".ANDTHEN." seems more intuitive to me, but that too is highly
subjective. I would settle for any reasonably mnemonic name,
but I must admit, because the most common cases have such trivial
work-arounds, this feature is still not very high on my wishlist.


-------- Cray Research --------- Roger Glover
-- A Silicon Graphics Company -- http://home.cray.com/~glover


%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

Top of Message | Previous Page | Permalink

JiscMail Tools


RSS Feeds and Sharing


Advanced Options


Archives

December 2023
February 2023
November 2022
September 2022
February 2022
January 2022
June 2021
November 2020
September 2020
June 2020
May 2020
April 2020
December 2019
October 2019
September 2019
March 2019
February 2019
January 2019
November 2018
October 2018
September 2018
August 2018
July 2018
May 2018
April 2018
March 2018
February 2018
January 2018
December 2017
November 2017
October 2017
September 2017
August 2017
July 2017
June 2017
May 2017
April 2017
March 2017
January 2017
December 2016
November 2016
October 2016
September 2016
August 2016
July 2016
June 2016
May 2016
April 2016
March 2016
February 2016
December 2015
November 2015
October 2015
September 2015
August 2015
June 2015
April 2015
March 2015
January 2015
December 2014
November 2014
October 2014
August 2014
July 2014
May 2014
April 2014
March 2014
February 2014
January 2014
December 2013
November 2013
July 2013
June 2013
May 2013
April 2013
February 2013
January 2013
December 2012
November 2012
October 2012
September 2012
August 2012
July 2012
June 2012
April 2012
March 2012
February 2012
January 2012
December 2011
November 2011
October 2011
September 2011
August 2011
July 2011
June 2011
May 2011
April 2011
March 2011
February 2011
January 2011
December 2010
November 2010
October 2010
August 2010
July 2010
June 2010
March 2010
February 2010
January 2010
December 2009
October 2009
August 2009
July 2009
June 2009
March 2009
February 2009
January 2009
December 2008
November 2008
October 2008
September 2008
August 2008
July 2008
June 2008
May 2008
April 2008
March 2008
February 2008
December 2007
November 2007
October 2007
September 2007
August 2007
July 2007
June 2007
May 2007
April 2007
March 2007
January 2007
2006
2005
2004
2003
2002
2001
2000
1999
1998
1997


JiscMail is a Jisc service.

View our service policies at https://www.jiscmail.ac.uk/policyandsecurity/ and Jisc's privacy policy at https://www.jisc.ac.uk/website/privacy-notice

For help and support help@jisc.ac.uk

Secured by F-Secure Anti-Virus CataList Email List Search Powered by the LISTSERV Email List Manager