Adding different main.jpf files for different detections.
authorrtrimana <rtrimana@uci.edu>
Thu, 21 May 2020 18:27:06 +0000 (11:27 -0700)
committerrtrimana <rtrimana@uci.edu>
Thu, 21 May 2020 18:27:06 +0000 (11:27 -0700)
14 files changed:
main.jpf
main_alarms.jpf [new file with mode: 0644]
main_cameras.jpf [new file with mode: 0644]
main_dimmers.jpf [new file with mode: 0644]
main_lights.jpf [new file with mode: 0644]
main_location.jpf [new file with mode: 0644]
main_locks.jpf [new file with mode: 0644]
main_musicplayers.jpf [new file with mode: 0644]
main_relayswitches.jpf [new file with mode: 0644]
main_speeches.jpf [new file with mode: 0644]
main_speechsynthesizers.jpf [new file with mode: 0644]
main_switches.jpf [new file with mode: 0644]
main_thermostats.jpf [new file with mode: 0644]
main_valves.jpf [new file with mode: 0644]

index da44beb60ca24d75228c760cf78a166aea7cb1f1..7a22a416faf41442738c27acd77b2790d1a96fb3 100644 (file)
--- a/main.jpf
+++ b/main.jpf
@@ -23,11 +23,11 @@ variables=currentLock
 #variables=colorChanged,currentHue,currentSaturation,currentLevel,currentSwitch,colorTemperature
 # Dimmers
 #variables=currentSwitch,currentLevel
-# Speeches
+# Speech Synthesizers
 #variables=level,oneUser
 # Music players
 #variables=status,duration,level,trackDescription,trackData,mute
-# Relay switch
+# Relay switches
 #variables=currentSwitch
 # Valves
 #variables=valve,valveLatestValue
diff --git a/main_alarms.jpf b/main_alarms.jpf
new file mode 100644 (file)
index 0000000..b22d55b
--- /dev/null
@@ -0,0 +1,59 @@
+target = main
+
+# This is the listener that can detect variable write-after-write conflicts
+#listener=gov.nasa.jpf.listener.VariableConflictTracker
+#listener=gov.nasa.jpf.listener.StateReducer
+#listener=gov.nasa.jpf.listener.StateReducerOld
+#listener=gov.nasa.jpf.listener.VariableConflictTracker,gov.nasa.jpf.listener.StateReducer
+listener=gov.nasa.jpf.listener.ConflictTrackerOld
+#listener=gov.nasa.jpf.listener.DPORStateReducer
+#listener=gov.nasa.jpf.listener.DPORStateReducer,gov.nasa.jpf.listener.ConflictTrackerOld
+
+# Potentially conflicting variables
+# Alarms
+variables=currentAlarm
+# Locks
+#variables=lock
+#variables=currentLock
+# Thermostats
+#variables=currentHeatingSetpoint,thermostatSetpoint,currentCoolingSetpoint,thermostatOperatingState,thermostatFanMode,currentThermostatMode
+# Switches
+#variables=currentSwitch
+# Lights
+#variables=colorChanged,currentHue,currentSaturation,currentLevel,currentSwitch,colorTemperature
+# Dimmers
+#variables=currentSwitch,currentLevel
+# Speech Synthesizers
+#variables=level,oneUser
+# Music players
+#variables=status,duration,level,trackDescription,trackData,mute
+# Relay switches
+#variables=currentSwitch
+# Valves
+#variables=valve,valveLatestValue
+# Cameras
+#variables=image,alarmState
+# Location
+#variables=locationMode
+                       
+# Potentially conflicting apps (we default to App1 and App2 for now)
+apps=App1,App2
+
+# Debug mode for ConflictTracker
+# We do not report any conflicts if the value is true
+#debug_mode=true
+
+# Debug mode for StateReducer
+printout_state_transition=true
+#activate_state_reduction=false
+file_output=moreStatistics
+
+# Timeout in minutes (default is 0 which means no timeout)
+#timeout=1440
+timeout=30
+
+#search.class = gov.nasa.jpf.search.heuristic.RandomHeuristic
+#search.heuristic.beam_search=true
+#search.class = gov.nasa.jpf.search.heuristic.UserHeuristic
+#search.class = gov.nasa.jpf.search.heuristic.BFSHeuristic
+#search.class = gov.nasa.jpf.search.heuristic.DFSHeuristic
diff --git a/main_cameras.jpf b/main_cameras.jpf
new file mode 100644 (file)
index 0000000..e9be248
--- /dev/null
@@ -0,0 +1,59 @@
+target = main
+
+# This is the listener that can detect variable write-after-write conflicts
+#listener=gov.nasa.jpf.listener.VariableConflictTracker
+#listener=gov.nasa.jpf.listener.StateReducer
+#listener=gov.nasa.jpf.listener.StateReducerOld
+#listener=gov.nasa.jpf.listener.VariableConflictTracker,gov.nasa.jpf.listener.StateReducer
+listener=gov.nasa.jpf.listener.ConflictTrackerOld
+#listener=gov.nasa.jpf.listener.DPORStateReducer
+#listener=gov.nasa.jpf.listener.DPORStateReducer,gov.nasa.jpf.listener.ConflictTrackerOld
+
+# Potentially conflicting variables
+# Alarms
+#variables=currentAlarm
+# Locks
+#variables=lock
+#variables=currentLock
+# Thermostats
+#variables=currentHeatingSetpoint,thermostatSetpoint,currentCoolingSetpoint,thermostatOperatingState,thermostatFanMode,currentThermostatMode
+# Switches
+#variables=currentSwitch
+# Lights
+#variables=colorChanged,currentHue,currentSaturation,currentLevel,currentSwitch,colorTemperature
+# Dimmers
+#variables=currentSwitch,currentLevel
+# Speech Synthesizers
+#variables=level,oneUser
+# Music players
+#variables=status,duration,level,trackDescription,trackData,mute
+# Relay switches
+#variables=currentSwitch
+# Valves
+#variables=valve,valveLatestValue
+# Cameras
+variables=image,alarmState
+# Location
+#variables=locationMode
+                       
+# Potentially conflicting apps (we default to App1 and App2 for now)
+apps=App1,App2
+
+# Debug mode for ConflictTracker
+# We do not report any conflicts if the value is true
+#debug_mode=true
+
+# Debug mode for StateReducer
+printout_state_transition=true
+#activate_state_reduction=false
+file_output=moreStatistics
+
+# Timeout in minutes (default is 0 which means no timeout)
+#timeout=1440
+timeout=30
+
+#search.class = gov.nasa.jpf.search.heuristic.RandomHeuristic
+#search.heuristic.beam_search=true
+#search.class = gov.nasa.jpf.search.heuristic.UserHeuristic
+#search.class = gov.nasa.jpf.search.heuristic.BFSHeuristic
+#search.class = gov.nasa.jpf.search.heuristic.DFSHeuristic
diff --git a/main_dimmers.jpf b/main_dimmers.jpf
new file mode 100644 (file)
index 0000000..cc7d5de
--- /dev/null
@@ -0,0 +1,59 @@
+target = main
+
+# This is the listener that can detect variable write-after-write conflicts
+#listener=gov.nasa.jpf.listener.VariableConflictTracker
+#listener=gov.nasa.jpf.listener.StateReducer
+#listener=gov.nasa.jpf.listener.StateReducerOld
+#listener=gov.nasa.jpf.listener.VariableConflictTracker,gov.nasa.jpf.listener.StateReducer
+listener=gov.nasa.jpf.listener.ConflictTrackerOld
+#listener=gov.nasa.jpf.listener.DPORStateReducer
+#listener=gov.nasa.jpf.listener.DPORStateReducer,gov.nasa.jpf.listener.ConflictTrackerOld
+
+# Potentially conflicting variables
+# Alarms
+#variables=currentAlarm
+# Locks
+#variables=lock
+#variables=currentLock
+# Thermostats
+#variables=currentHeatingSetpoint,thermostatSetpoint,currentCoolingSetpoint,thermostatOperatingState,thermostatFanMode,currentThermostatMode
+# Switches
+#variables=currentSwitch
+# Lights
+#variables=colorChanged,currentHue,currentSaturation,currentLevel,currentSwitch,colorTemperature
+# Dimmers
+variables=currentSwitch,currentLevel
+# Speech Synthesizers
+#variables=level,oneUser
+# Music players
+#variables=status,duration,level,trackDescription,trackData,mute
+# Relay switches
+#variables=currentSwitch
+# Valves
+#variables=valve,valveLatestValue
+# Cameras
+#variables=image,alarmState
+# Location
+#variables=locationMode
+                       
+# Potentially conflicting apps (we default to App1 and App2 for now)
+apps=App1,App2
+
+# Debug mode for ConflictTracker
+# We do not report any conflicts if the value is true
+#debug_mode=true
+
+# Debug mode for StateReducer
+printout_state_transition=true
+#activate_state_reduction=false
+file_output=moreStatistics
+
+# Timeout in minutes (default is 0 which means no timeout)
+#timeout=1440
+timeout=30
+
+#search.class = gov.nasa.jpf.search.heuristic.RandomHeuristic
+#search.heuristic.beam_search=true
+#search.class = gov.nasa.jpf.search.heuristic.UserHeuristic
+#search.class = gov.nasa.jpf.search.heuristic.BFSHeuristic
+#search.class = gov.nasa.jpf.search.heuristic.DFSHeuristic
diff --git a/main_lights.jpf b/main_lights.jpf
new file mode 100644 (file)
index 0000000..87190b9
--- /dev/null
@@ -0,0 +1,59 @@
+target = main
+
+# This is the listener that can detect variable write-after-write conflicts
+#listener=gov.nasa.jpf.listener.VariableConflictTracker
+#listener=gov.nasa.jpf.listener.StateReducer
+#listener=gov.nasa.jpf.listener.StateReducerOld
+#listener=gov.nasa.jpf.listener.VariableConflictTracker,gov.nasa.jpf.listener.StateReducer
+listener=gov.nasa.jpf.listener.ConflictTrackerOld
+#listener=gov.nasa.jpf.listener.DPORStateReducer
+#listener=gov.nasa.jpf.listener.DPORStateReducer,gov.nasa.jpf.listener.ConflictTrackerOld
+
+# Potentially conflicting variables
+# Alarms
+#variables=currentAlarm
+# Locks
+#variables=lock
+#variables=currentLock
+# Thermostats
+#variables=currentHeatingSetpoint,thermostatSetpoint,currentCoolingSetpoint,thermostatOperatingState,thermostatFanMode,currentThermostatMode
+# Switches
+#variables=currentSwitch
+# Lights
+variables=colorChanged,currentHue,currentSaturation,currentLevel,currentSwitch,colorTemperature
+# Dimmers
+#variables=currentSwitch,currentLevel
+# Speech Synthesizers
+#variables=level,oneUser
+# Music players
+#variables=status,duration,level,trackDescription,trackData,mute
+# Relay switches
+#variables=currentSwitch
+# Valves
+#variables=valve,valveLatestValue
+# Cameras
+#variables=image,alarmState
+# Location
+#variables=locationMode
+                       
+# Potentially conflicting apps (we default to App1 and App2 for now)
+apps=App1,App2
+
+# Debug mode for ConflictTracker
+# We do not report any conflicts if the value is true
+#debug_mode=true
+
+# Debug mode for StateReducer
+printout_state_transition=true
+#activate_state_reduction=false
+file_output=moreStatistics
+
+# Timeout in minutes (default is 0 which means no timeout)
+#timeout=1440
+timeout=30
+
+#search.class = gov.nasa.jpf.search.heuristic.RandomHeuristic
+#search.heuristic.beam_search=true
+#search.class = gov.nasa.jpf.search.heuristic.UserHeuristic
+#search.class = gov.nasa.jpf.search.heuristic.BFSHeuristic
+#search.class = gov.nasa.jpf.search.heuristic.DFSHeuristic
diff --git a/main_location.jpf b/main_location.jpf
new file mode 100644 (file)
index 0000000..459890a
--- /dev/null
@@ -0,0 +1,59 @@
+target = main
+
+# This is the listener that can detect variable write-after-write conflicts
+#listener=gov.nasa.jpf.listener.VariableConflictTracker
+#listener=gov.nasa.jpf.listener.StateReducer
+#listener=gov.nasa.jpf.listener.StateReducerOld
+#listener=gov.nasa.jpf.listener.VariableConflictTracker,gov.nasa.jpf.listener.StateReducer
+listener=gov.nasa.jpf.listener.ConflictTrackerOld
+#listener=gov.nasa.jpf.listener.DPORStateReducer
+#listener=gov.nasa.jpf.listener.DPORStateReducer,gov.nasa.jpf.listener.ConflictTrackerOld
+
+# Potentially conflicting variables
+# Alarms
+#variables=currentAlarm
+# Locks
+#variables=lock
+#variables=currentLock
+# Thermostats
+#variables=currentHeatingSetpoint,thermostatSetpoint,currentCoolingSetpoint,thermostatOperatingState,thermostatFanMode,currentThermostatMode
+# Switches
+#variables=currentSwitch
+# Lights
+#variables=colorChanged,currentHue,currentSaturation,currentLevel,currentSwitch,colorTemperature
+# Dimmers
+#variables=currentSwitch,currentLevel
+# Speech Synthesizers
+#variables=level,oneUser
+# Music players
+#variables=status,duration,level,trackDescription,trackData,mute
+# Relay switches
+#variables=currentSwitch
+# Valves
+#variables=valve,valveLatestValue
+# Cameras
+#variables=image,alarmState
+# Location
+variables=locationMode
+                       
+# Potentially conflicting apps (we default to App1 and App2 for now)
+apps=App1,App2
+
+# Debug mode for ConflictTracker
+# We do not report any conflicts if the value is true
+#debug_mode=true
+
+# Debug mode for StateReducer
+printout_state_transition=true
+#activate_state_reduction=false
+file_output=moreStatistics
+
+# Timeout in minutes (default is 0 which means no timeout)
+#timeout=1440
+timeout=30
+
+#search.class = gov.nasa.jpf.search.heuristic.RandomHeuristic
+#search.heuristic.beam_search=true
+#search.class = gov.nasa.jpf.search.heuristic.UserHeuristic
+#search.class = gov.nasa.jpf.search.heuristic.BFSHeuristic
+#search.class = gov.nasa.jpf.search.heuristic.DFSHeuristic
diff --git a/main_locks.jpf b/main_locks.jpf
new file mode 100644 (file)
index 0000000..7a22a41
--- /dev/null
@@ -0,0 +1,59 @@
+target = main
+
+# This is the listener that can detect variable write-after-write conflicts
+#listener=gov.nasa.jpf.listener.VariableConflictTracker
+#listener=gov.nasa.jpf.listener.StateReducer
+#listener=gov.nasa.jpf.listener.StateReducerOld
+#listener=gov.nasa.jpf.listener.VariableConflictTracker,gov.nasa.jpf.listener.StateReducer
+listener=gov.nasa.jpf.listener.ConflictTrackerOld
+#listener=gov.nasa.jpf.listener.DPORStateReducer
+#listener=gov.nasa.jpf.listener.DPORStateReducer,gov.nasa.jpf.listener.ConflictTrackerOld
+
+# Potentially conflicting variables
+# Alarms
+#variables=currentAlarm
+# Locks
+#variables=lock
+variables=currentLock
+# Thermostats
+#variables=currentHeatingSetpoint,thermostatSetpoint,currentCoolingSetpoint,thermostatOperatingState,thermostatFanMode,currentThermostatMode
+# Switches
+#variables=currentSwitch
+# Lights
+#variables=colorChanged,currentHue,currentSaturation,currentLevel,currentSwitch,colorTemperature
+# Dimmers
+#variables=currentSwitch,currentLevel
+# Speech Synthesizers
+#variables=level,oneUser
+# Music players
+#variables=status,duration,level,trackDescription,trackData,mute
+# Relay switches
+#variables=currentSwitch
+# Valves
+#variables=valve,valveLatestValue
+# Cameras
+#variables=image,alarmState
+# Location
+#variables=locationMode
+                       
+# Potentially conflicting apps (we default to App1 and App2 for now)
+apps=App1,App2
+
+# Debug mode for ConflictTracker
+# We do not report any conflicts if the value is true
+#debug_mode=true
+
+# Debug mode for StateReducer
+printout_state_transition=true
+#activate_state_reduction=false
+file_output=moreStatistics
+
+# Timeout in minutes (default is 0 which means no timeout)
+#timeout=1440
+timeout=30
+
+#search.class = gov.nasa.jpf.search.heuristic.RandomHeuristic
+#search.heuristic.beam_search=true
+#search.class = gov.nasa.jpf.search.heuristic.UserHeuristic
+#search.class = gov.nasa.jpf.search.heuristic.BFSHeuristic
+#search.class = gov.nasa.jpf.search.heuristic.DFSHeuristic
diff --git a/main_musicplayers.jpf b/main_musicplayers.jpf
new file mode 100644 (file)
index 0000000..c342b01
--- /dev/null
@@ -0,0 +1,59 @@
+target = main
+
+# This is the listener that can detect variable write-after-write conflicts
+#listener=gov.nasa.jpf.listener.VariableConflictTracker
+#listener=gov.nasa.jpf.listener.StateReducer
+#listener=gov.nasa.jpf.listener.StateReducerOld
+#listener=gov.nasa.jpf.listener.VariableConflictTracker,gov.nasa.jpf.listener.StateReducer
+listener=gov.nasa.jpf.listener.ConflictTrackerOld
+#listener=gov.nasa.jpf.listener.DPORStateReducer
+#listener=gov.nasa.jpf.listener.DPORStateReducer,gov.nasa.jpf.listener.ConflictTrackerOld
+
+# Potentially conflicting variables
+# Alarms
+#variables=currentAlarm
+# Locks
+#variables=lock
+#variables=currentLock
+# Thermostats
+#variables=currentHeatingSetpoint,thermostatSetpoint,currentCoolingSetpoint,thermostatOperatingState,thermostatFanMode,currentThermostatMode
+# Switches
+#variables=currentSwitch
+# Lights
+#variables=colorChanged,currentHue,currentSaturation,currentLevel,currentSwitch,colorTemperature
+# Dimmers
+#variables=currentSwitch,currentLevel
+# Speech Synthesizers
+#variables=level,oneUser
+# Music players
+variables=status,duration,level,trackDescription,trackData,mute
+# Relay switches
+#variables=currentSwitch
+# Valves
+#variables=valve,valveLatestValue
+# Cameras
+#variables=image,alarmState
+# Location
+#variables=locationMode
+                       
+# Potentially conflicting apps (we default to App1 and App2 for now)
+apps=App1,App2
+
+# Debug mode for ConflictTracker
+# We do not report any conflicts if the value is true
+#debug_mode=true
+
+# Debug mode for StateReducer
+printout_state_transition=true
+#activate_state_reduction=false
+file_output=moreStatistics
+
+# Timeout in minutes (default is 0 which means no timeout)
+#timeout=1440
+timeout=30
+
+#search.class = gov.nasa.jpf.search.heuristic.RandomHeuristic
+#search.heuristic.beam_search=true
+#search.class = gov.nasa.jpf.search.heuristic.UserHeuristic
+#search.class = gov.nasa.jpf.search.heuristic.BFSHeuristic
+#search.class = gov.nasa.jpf.search.heuristic.DFSHeuristic
diff --git a/main_relayswitches.jpf b/main_relayswitches.jpf
new file mode 100644 (file)
index 0000000..82ce18d
--- /dev/null
@@ -0,0 +1,59 @@
+target = main
+
+# This is the listener that can detect variable write-after-write conflicts
+#listener=gov.nasa.jpf.listener.VariableConflictTracker
+#listener=gov.nasa.jpf.listener.StateReducer
+#listener=gov.nasa.jpf.listener.StateReducerOld
+#listener=gov.nasa.jpf.listener.VariableConflictTracker,gov.nasa.jpf.listener.StateReducer
+listener=gov.nasa.jpf.listener.ConflictTrackerOld
+#listener=gov.nasa.jpf.listener.DPORStateReducer
+#listener=gov.nasa.jpf.listener.DPORStateReducer,gov.nasa.jpf.listener.ConflictTrackerOld
+
+# Potentially conflicting variables
+# Alarms
+#variables=currentAlarm
+# Locks
+#variables=lock
+#variables=currentLock
+# Thermostats
+#variables=currentHeatingSetpoint,thermostatSetpoint,currentCoolingSetpoint,thermostatOperatingState,thermostatFanMode,currentThermostatMode
+# Switches
+#variables=currentSwitch
+# Lights
+#variables=colorChanged,currentHue,currentSaturation,currentLevel,currentSwitch,colorTemperature
+# Dimmers
+#variables=currentSwitch,currentLevel
+# Speech Synthesizers
+#variables=level,oneUser
+# Music players
+#variables=status,duration,level,trackDescription,trackData,mute
+# Relay switches
+variables=currentSwitch
+# Valves
+#variables=valve,valveLatestValue
+# Cameras
+#variables=image,alarmState
+# Location
+#variables=locationMode
+                       
+# Potentially conflicting apps (we default to App1 and App2 for now)
+apps=App1,App2
+
+# Debug mode for ConflictTracker
+# We do not report any conflicts if the value is true
+#debug_mode=true
+
+# Debug mode for StateReducer
+printout_state_transition=true
+#activate_state_reduction=false
+file_output=moreStatistics
+
+# Timeout in minutes (default is 0 which means no timeout)
+#timeout=1440
+timeout=30
+
+#search.class = gov.nasa.jpf.search.heuristic.RandomHeuristic
+#search.heuristic.beam_search=true
+#search.class = gov.nasa.jpf.search.heuristic.UserHeuristic
+#search.class = gov.nasa.jpf.search.heuristic.BFSHeuristic
+#search.class = gov.nasa.jpf.search.heuristic.DFSHeuristic
diff --git a/main_speeches.jpf b/main_speeches.jpf
new file mode 100644 (file)
index 0000000..da44beb
--- /dev/null
@@ -0,0 +1,59 @@
+target = main
+
+# This is the listener that can detect variable write-after-write conflicts
+#listener=gov.nasa.jpf.listener.VariableConflictTracker
+#listener=gov.nasa.jpf.listener.StateReducer
+#listener=gov.nasa.jpf.listener.StateReducerOld
+#listener=gov.nasa.jpf.listener.VariableConflictTracker,gov.nasa.jpf.listener.StateReducer
+listener=gov.nasa.jpf.listener.ConflictTrackerOld
+#listener=gov.nasa.jpf.listener.DPORStateReducer
+#listener=gov.nasa.jpf.listener.DPORStateReducer,gov.nasa.jpf.listener.ConflictTrackerOld
+
+# Potentially conflicting variables
+# Alarms
+#variables=currentAlarm
+# Locks
+#variables=lock
+variables=currentLock
+# Thermostats
+#variables=currentHeatingSetpoint,thermostatSetpoint,currentCoolingSetpoint,thermostatOperatingState,thermostatFanMode,currentThermostatMode
+# Switches
+#variables=currentSwitch
+# Lights
+#variables=colorChanged,currentHue,currentSaturation,currentLevel,currentSwitch,colorTemperature
+# Dimmers
+#variables=currentSwitch,currentLevel
+# Speeches
+#variables=level,oneUser
+# Music players
+#variables=status,duration,level,trackDescription,trackData,mute
+# Relay switch
+#variables=currentSwitch
+# Valves
+#variables=valve,valveLatestValue
+# Cameras
+#variables=image,alarmState
+# Location
+#variables=locationMode
+                       
+# Potentially conflicting apps (we default to App1 and App2 for now)
+apps=App1,App2
+
+# Debug mode for ConflictTracker
+# We do not report any conflicts if the value is true
+#debug_mode=true
+
+# Debug mode for StateReducer
+printout_state_transition=true
+#activate_state_reduction=false
+file_output=moreStatistics
+
+# Timeout in minutes (default is 0 which means no timeout)
+#timeout=1440
+timeout=30
+
+#search.class = gov.nasa.jpf.search.heuristic.RandomHeuristic
+#search.heuristic.beam_search=true
+#search.class = gov.nasa.jpf.search.heuristic.UserHeuristic
+#search.class = gov.nasa.jpf.search.heuristic.BFSHeuristic
+#search.class = gov.nasa.jpf.search.heuristic.DFSHeuristic
diff --git a/main_speechsynthesizers.jpf b/main_speechsynthesizers.jpf
new file mode 100644 (file)
index 0000000..98bf757
--- /dev/null
@@ -0,0 +1,59 @@
+target = main
+
+# This is the listener that can detect variable write-after-write conflicts
+#listener=gov.nasa.jpf.listener.VariableConflictTracker
+#listener=gov.nasa.jpf.listener.StateReducer
+#listener=gov.nasa.jpf.listener.StateReducerOld
+#listener=gov.nasa.jpf.listener.VariableConflictTracker,gov.nasa.jpf.listener.StateReducer
+listener=gov.nasa.jpf.listener.ConflictTrackerOld
+#listener=gov.nasa.jpf.listener.DPORStateReducer
+#listener=gov.nasa.jpf.listener.DPORStateReducer,gov.nasa.jpf.listener.ConflictTrackerOld
+
+# Potentially conflicting variables
+# Alarms
+#variables=currentAlarm
+# Locks
+#variables=lock
+#variables=currentLock
+# Thermostats
+#variables=currentHeatingSetpoint,thermostatSetpoint,currentCoolingSetpoint,thermostatOperatingState,thermostatFanMode,currentThermostatMode
+# Switches
+#variables=currentSwitch
+# Lights
+#variables=colorChanged,currentHue,currentSaturation,currentLevel,currentSwitch,colorTemperature
+# Dimmers
+#variables=currentSwitch,currentLevel
+# Speech Synthesizers
+variables=level,oneUser
+# Music players
+#variables=status,duration,level,trackDescription,trackData,mute
+# Relay switches
+#variables=currentSwitch
+# Valves
+#variables=valve,valveLatestValue
+# Cameras
+#variables=image,alarmState
+# Location
+#variables=locationMode
+                       
+# Potentially conflicting apps (we default to App1 and App2 for now)
+apps=App1,App2
+
+# Debug mode for ConflictTracker
+# We do not report any conflicts if the value is true
+#debug_mode=true
+
+# Debug mode for StateReducer
+printout_state_transition=true
+#activate_state_reduction=false
+file_output=moreStatistics
+
+# Timeout in minutes (default is 0 which means no timeout)
+#timeout=1440
+timeout=30
+
+#search.class = gov.nasa.jpf.search.heuristic.RandomHeuristic
+#search.heuristic.beam_search=true
+#search.class = gov.nasa.jpf.search.heuristic.UserHeuristic
+#search.class = gov.nasa.jpf.search.heuristic.BFSHeuristic
+#search.class = gov.nasa.jpf.search.heuristic.DFSHeuristic
diff --git a/main_switches.jpf b/main_switches.jpf
new file mode 100644 (file)
index 0000000..c6230e6
--- /dev/null
@@ -0,0 +1,59 @@
+target = main
+
+# This is the listener that can detect variable write-after-write conflicts
+#listener=gov.nasa.jpf.listener.VariableConflictTracker
+#listener=gov.nasa.jpf.listener.StateReducer
+#listener=gov.nasa.jpf.listener.StateReducerOld
+#listener=gov.nasa.jpf.listener.VariableConflictTracker,gov.nasa.jpf.listener.StateReducer
+listener=gov.nasa.jpf.listener.ConflictTrackerOld
+#listener=gov.nasa.jpf.listener.DPORStateReducer
+#listener=gov.nasa.jpf.listener.DPORStateReducer,gov.nasa.jpf.listener.ConflictTrackerOld
+
+# Potentially conflicting variables
+# Alarms
+#variables=currentAlarm
+# Locks
+#variables=lock
+#variables=currentLock
+# Thermostats
+#variables=currentHeatingSetpoint,thermostatSetpoint,currentCoolingSetpoint,thermostatOperatingState,thermostatFanMode,currentThermostatMode
+# Switches
+variables=currentSwitch
+# Lights
+#variables=colorChanged,currentHue,currentSaturation,currentLevel,currentSwitch,colorTemperature
+# Dimmers
+#variables=currentSwitch,currentLevel
+# Speech Synthesizers
+#variables=level,oneUser
+# Music players
+#variables=status,duration,level,trackDescription,trackData,mute
+# Relay switches
+#variables=currentSwitch
+# Valves
+#variables=valve,valveLatestValue
+# Cameras
+#variables=image,alarmState
+# Location
+#variables=locationMode
+                       
+# Potentially conflicting apps (we default to App1 and App2 for now)
+apps=App1,App2
+
+# Debug mode for ConflictTracker
+# We do not report any conflicts if the value is true
+#debug_mode=true
+
+# Debug mode for StateReducer
+printout_state_transition=true
+#activate_state_reduction=false
+file_output=moreStatistics
+
+# Timeout in minutes (default is 0 which means no timeout)
+#timeout=1440
+timeout=30
+
+#search.class = gov.nasa.jpf.search.heuristic.RandomHeuristic
+#search.heuristic.beam_search=true
+#search.class = gov.nasa.jpf.search.heuristic.UserHeuristic
+#search.class = gov.nasa.jpf.search.heuristic.BFSHeuristic
+#search.class = gov.nasa.jpf.search.heuristic.DFSHeuristic
diff --git a/main_thermostats.jpf b/main_thermostats.jpf
new file mode 100644 (file)
index 0000000..bb3d330
--- /dev/null
@@ -0,0 +1,59 @@
+target = main
+
+# This is the listener that can detect variable write-after-write conflicts
+#listener=gov.nasa.jpf.listener.VariableConflictTracker
+#listener=gov.nasa.jpf.listener.StateReducer
+#listener=gov.nasa.jpf.listener.StateReducerOld
+#listener=gov.nasa.jpf.listener.VariableConflictTracker,gov.nasa.jpf.listener.StateReducer
+listener=gov.nasa.jpf.listener.ConflictTrackerOld
+#listener=gov.nasa.jpf.listener.DPORStateReducer
+#listener=gov.nasa.jpf.listener.DPORStateReducer,gov.nasa.jpf.listener.ConflictTrackerOld
+
+# Potentially conflicting variables
+# Alarms
+#variables=currentAlarm
+# Locks
+#variables=lock
+#variables=currentLock
+# Thermostats
+variables=currentHeatingSetpoint,thermostatSetpoint,currentCoolingSetpoint,thermostatOperatingState,thermostatFanMode,currentThermostatMode
+# Switches
+#variables=currentSwitch
+# Lights
+#variables=colorChanged,currentHue,currentSaturation,currentLevel,currentSwitch,colorTemperature
+# Dimmers
+#variables=currentSwitch,currentLevel
+# Speech Synthesizers
+#variables=level,oneUser
+# Music players
+#variables=status,duration,level,trackDescription,trackData,mute
+# Relay switches
+#variables=currentSwitch
+# Valves
+#variables=valve,valveLatestValue
+# Cameras
+#variables=image,alarmState
+# Location
+#variables=locationMode
+                       
+# Potentially conflicting apps (we default to App1 and App2 for now)
+apps=App1,App2
+
+# Debug mode for ConflictTracker
+# We do not report any conflicts if the value is true
+#debug_mode=true
+
+# Debug mode for StateReducer
+printout_state_transition=true
+#activate_state_reduction=false
+file_output=moreStatistics
+
+# Timeout in minutes (default is 0 which means no timeout)
+#timeout=1440
+timeout=30
+
+#search.class = gov.nasa.jpf.search.heuristic.RandomHeuristic
+#search.heuristic.beam_search=true
+#search.class = gov.nasa.jpf.search.heuristic.UserHeuristic
+#search.class = gov.nasa.jpf.search.heuristic.BFSHeuristic
+#search.class = gov.nasa.jpf.search.heuristic.DFSHeuristic
diff --git a/main_valves.jpf b/main_valves.jpf
new file mode 100644 (file)
index 0000000..2e07437
--- /dev/null
@@ -0,0 +1,59 @@
+target = main
+
+# This is the listener that can detect variable write-after-write conflicts
+#listener=gov.nasa.jpf.listener.VariableConflictTracker
+#listener=gov.nasa.jpf.listener.StateReducer
+#listener=gov.nasa.jpf.listener.StateReducerOld
+#listener=gov.nasa.jpf.listener.VariableConflictTracker,gov.nasa.jpf.listener.StateReducer
+listener=gov.nasa.jpf.listener.ConflictTrackerOld
+#listener=gov.nasa.jpf.listener.DPORStateReducer
+#listener=gov.nasa.jpf.listener.DPORStateReducer,gov.nasa.jpf.listener.ConflictTrackerOld
+
+# Potentially conflicting variables
+# Alarms
+#variables=currentAlarm
+# Locks
+#variables=lock
+#variables=currentLock
+# Thermostats
+#variables=currentHeatingSetpoint,thermostatSetpoint,currentCoolingSetpoint,thermostatOperatingState,thermostatFanMode,currentThermostatMode
+# Switches
+#variables=currentSwitch
+# Lights
+#variables=colorChanged,currentHue,currentSaturation,currentLevel,currentSwitch,colorTemperature
+# Dimmers
+#variables=currentSwitch,currentLevel
+# Speech Synthesizers
+#variables=level,oneUser
+# Music players
+#variables=status,duration,level,trackDescription,trackData,mute
+# Relay switches
+#variables=currentSwitch
+# Valves
+variables=valve,valveLatestValue
+# Cameras
+#variables=image,alarmState
+# Location
+#variables=locationMode
+                       
+# Potentially conflicting apps (we default to App1 and App2 for now)
+apps=App1,App2
+
+# Debug mode for ConflictTracker
+# We do not report any conflicts if the value is true
+#debug_mode=true
+
+# Debug mode for StateReducer
+printout_state_transition=true
+#activate_state_reduction=false
+file_output=moreStatistics
+
+# Timeout in minutes (default is 0 which means no timeout)
+#timeout=1440
+timeout=30
+
+#search.class = gov.nasa.jpf.search.heuristic.RandomHeuristic
+#search.heuristic.beam_search=true
+#search.class = gov.nasa.jpf.search.heuristic.UserHeuristic
+#search.class = gov.nasa.jpf.search.heuristic.BFSHeuristic
+#search.class = gov.nasa.jpf.search.heuristic.DFSHeuristic