简体   繁体   中英

The best practice to use boolean in Alloy model

I'm building a simple Alloy to generate simple Java Pojo objects and some fields of that pojo are Boolean values. I'm now using the following mechanism to achieve this function

one sig item {
    autoPay: String,
    Price: Int
}

fact boolean {
    all n: item {
        item.autoPay = "true" or
        item.autoPay = "false"
    } 
}

This will work but everytime I introduced a new boolean field I have to modify the boolean fact to make sure the value to be either "true" or "false". Is there any best practice to do this? Like what we Alloy does for Integers?

It would be much better to introduce a Bool sig, and then use it for all your boolean fields, eg,

abstract sig Bool{}
one sig True extends Bool
one sig False extends Bool

one sig item {
  autoPay: Bool,
  Price: Int
}

No additional fact is needed in this case.

If you like this approach, there is a built-in "util/boolean" library which defines Bool , True , and False sigs exactly like I did above, and additionally provides some helper functions (like isTrue , And , Or , etc.) so you can simply say

open util/boolean 

one sig item {
  autoPay: Bool,
  Price: Int
}    

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM