Polyspace assumption regarding global/static variable

조회 수: 1 (최근 30일)
Dimo
Dimo 2017년 12월 7일
편집: Alexandre De Barros 2017년 12월 8일
Hello,
In R2015a in codeprov_ref.pdf (page 5-10) under External Variables topic is written:
Polyspace verification works on the principle that a global or static external variable could take any value within the range of its type.
I don't understand the meaning of the words * or static* here. Does it mean that static variable with file scope will also have full range?

채택된 답변

Alexandre De Barros
Alexandre De Barros 2017년 12월 8일
편집: Alexandre De Barros 2017년 12월 8일
Hello,
This notion of extern static variable is a little bit strange indeed. It no longer appears in the current version of the documentation.
Static variables are considered local to the file, and so they will not have full-range. A static variable is initialized to its initial value, if there is one, or to 0 without explicit initialization and keep this value unless it is assigned to a new value.
Static variables can still be set to full-range thanks to the main generator option "Variables to initialize" with the value 'all'. With this parameter, the global and static variables are considered as modified and can then take any value.
Alex

추가 답변 (0개)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by