Author |
Message |
Topic: Display Settings2 |
mecej4
Replies: 1
Views: 113
|
Forum: General Posted: Tue May 30, 2023 2:43 pm Subject: |
Sid,
Please clarify what you mean by "display settings take effect" and "in the Silverfrost system", and what actions you took to "set display settings".
There are ... |
Topic: Error reporting |
mecej4
Replies: 2
Views: 258
|
Forum: Support Posted: Wed May 17, 2023 3:01 pm Subject: |
You should see fewer such "false error reports" if your sources are free form rather than the old F77 fixed form.
In fixed form, if you left out the '()' in the function declaration, the ... |
Topic: Lsiting question |
mecej4
Replies: 1
Views: 630
|
Forum: General Posted: Sun May 14, 2023 2:37 am Subject: |
Duplicate of post http://forums.silverfrost.com/viewtopic.php?t=4792 by same poster. |
Topic: Can Fortran merge files? |
mecej4
Replies: 4
Views: 841
|
Forum: General Posted: Sun Apr 23, 2023 10:04 pm Subject: |
Dan, you say "merge", but your description pertains only to the the special case "concatenate". Presumably, the thousands of files are named in such a way that the order of each pi ... |
Topic: Shape of deallocated array |
mecej4
Replies: 21
Views: 6178
|
Forum: Support Posted: Fri Apr 21, 2023 1:44 pm Subject: |
Line 5 of the short program in the first post has two function invocations in the output list, one of which is legal and the other is not. If we separate the two, as in
Program p
Integer, Dimensio ... |
Topic: FORALL puzzle |
mecej4
Replies: 4
Views: 1240
|
Forum: Support Posted: Sat Apr 15, 2023 1:24 am Subject: |
The code is invalid because x(2:9) are not defined when they are used in the FORALL assignment statement, except when one specific order of evaluation is followed on a single processor shared memory c ... |
Topic: New Version |
mecej4
Replies: 4
Views: 1431
|
Forum: 64-bit Posted: Thu Apr 13, 2023 3:50 pm Subject: |
"Instruction"? Are you debugging at the assembler level and attempting to set a breakpoint on a machine instruction? Are you using SDBG or a different debugger? Visual Studio?
The message ... |
Topic: select_printer@ |
mecej4
Replies: 8
Views: 1800
|
Forum: Support Posted: Wed Apr 12, 2023 12:11 am Subject: |
The 32- and 64-bit EXEs display a printer selection dialog.
Windows 64, no printer attached. |
Topic: Porting SLATEC Library -- Undocumented routines in SALFLIBC |
mecej4
Replies: 51
Views: 9295
|
Forum: Support Posted: Sat Apr 01, 2023 2:24 am Subject: |
Here is a link to the Silverfrost Gitlab site, from where one may download the Slatec DLLs and examples:
https://gitlab.com/silverfrost/slatec |
Topic: Precision question |
mecej4
Replies: 9
Views: 1755
|
Forum: General Posted: Wed Mar 29, 2023 12:04 am Subject: |
Fortran does not support fixed point real numbers. It supports floating point arithmetic. For the range of numbers that you specified, you will find that double precision provides sufficient precision ... |
Topic: Porting SLATEC Library -- Undocumented routines in SALFLIBC |
mecej4
Replies: 51
Views: 9295
|
Forum: Support Posted: Tue Mar 28, 2023 11:20 am Subject: Re: |
I have done those
A couple of typos:
"Saltec" ---->>> "Slatec" |
Topic: Porting SLATEC Library -- Undocumented routines in SALFLIBC |
mecej4
Replies: 51
Views: 9295
|
Forum: Support Posted: Tue Mar 28, 2023 12:08 am Subject: |
Robert, that would be great. I was not aware that you had a Gitlab page with the BLAS library.
You could probably add the example drivers (very few at this time -- just 11) to a "tests" f ... |
Topic: Format question |
mecej4
Replies: 7
Views: 1624
|
Forum: General Posted: Sat Mar 25, 2023 5:04 pm Subject: |
Support for decimal arithmetic in currently popular programming languages and hardware support on microcomputers is not sufficient for financial applications and decimal arithmetic. An expert's review ... |
Topic: Format question |
mecej4
Replies: 7
Views: 1624
|
Forum: General Posted: Sat Mar 25, 2023 10:07 am Subject: |
There is a major problem with what you are attempting to do, if I am not mistaking what that is.
You want (I think) to do fixed point real arithmetic with fifteen significant digits. Fortran and t ... |
Topic: Format question |
mecej4
Replies: 7
Views: 1624
|
Forum: General Posted: Sat Mar 25, 2023 9:25 am Subject: |
If you have a literal real in a program and you leave out the "d0", that number would be chopped/rounded to the precision of a 32-bit real, i.e., about seven significant decimal digits. You ... |
|