如何让 gfortran 进行 INTEGER - LOGICAL 转换

发布于 2024-11-05 00:45:21 字数 537 浏览 0 评论 0原文

根据 this,gfortran 可以进行整数逻辑转换,但我收到此错误:

                  if (.not.bDropped.and.(zz_unif01() .lt. (1 - (Test_Dru
                           1
Error: Operand of .not. operator at (1) is INTEGER(4)

我知道最好将代码更改为.not.bDropped(bDropped.eq.0),但这并不简单,因为它是生成的代码。

我尝试了各种 -std=xxx 标志,但它们没有任何区别。

According to this, gfortran can do integer-logical conversion, but I'm getting this error:

                  if (.not.bDropped.and.(zz_unif01() .lt. (1 - (Test_Dru
                           1
Error: Operand of .not. operator at (1) is INTEGER(4)

I know it would be better to change the code from .not.bDropped to (bDropped.eq.0), but that would not be simple because it's generated code.

I tried various -std=xxx flags but they made no difference.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

喵星人汪星人 2024-11-12 00:45:21

您链接到的页面上的最后一行内容

However, there is no implicit conversion of INTEGER values in if-statements, [...].

是我猜想这与它有关。

编辑:这似乎不是全部事实。简单地做l1 = .not。 0(当l1 是逻辑变量时)给出与您收到的相同错误。所以在这种情况下也没有隐式转换。

The last line on the page you linked to reads

However, there is no implicit conversion of INTEGER values in if-statements, [...].

I'd guess that has something to do with it.

Edit: This seems not to be the entire truth. Simply doing l1 = .not. 0 (when l1 is a logical variable) gives the same error you received. So there is no implicit conversion in this case either.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文