Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.

Interval Arithmetic

vpantfee
Beginner
457 Views
Does Intel 11.1 compiler support INTERVAL data type and interval aritmetic operationsas are available in Sun compiler ?

For example
INTERVAL :: X =[1, 3] , Y = [ 2, 4]
PRINT * , X+Y, 1X , X-Y , 1X , X*Y, 1X, X/Y

Thanks in advance for kind information
0 Kudos
1 Solution
Steven_L_Intel1
Employee
457 Views
No, and no plans to do this. Sun had at one time made a proposal to add interval arithmetic to the Fortran standard, but the proposal was withdrawn and there was little enthusiasm for it among the committee as a whole. Note that Fortran 2003 standardizes the syntax [2,3] as an array constructor.

View solution in original post

0 Kudos
2 Replies
Steven_L_Intel1
Employee
458 Views
No, and no plans to do this. Sun had at one time made a proposal to add interval arithmetic to the Fortran standard, but the proposal was withdrawn and there was little enthusiasm for it among the committee as a whole. Note that Fortran 2003 standardizes the syntax [2,3] as an array constructor.
0 Kudos
vpantfee
Beginner
457 Views
No, and no plans to do this. Sun had at one time made a proposal to add interval arithmetic to the Fortran standard, but the proposal was withdrawn and there was little enthusiasm for it among the committee as a whole. Note that Fortran 2003 standardizes the syntax [2,3] as an array constructor.

Thank you Steve for the information.
0 Kudos
Reply