Questions tagged [ctl]

83 questions
1
vote
1 answer

Determining when two boolean functions are equivalent?

Problem Given two boolean functions f1(a,b) and f2(a,b,c) with a,b and c booleans, I'd like to know if there exists a value of c such that for any combinations of a et b f1(a,b)=f2(a,b,c). For example if f1(a,b)=a AND b and f2(a,b,c)=a AND b AND c,…
f1f2
  • 23
  • 3
1
vote
0 answers

how to load field data that exceed 4000 characters by sqlldr .ctl with out changing table column datatype from nvarchar2(2000) to nclob in table

i am trying to load a data through sqlldr to staging table which have more than 4000 characters. i don't want to change datatype from my existing nvarchar(2000) in staging table. how to to load data by removing some received data in that column in…
1
vote
1 answer

Specification name

I want to know how to attribute names to properties inside SMV file. I have done this but only from the terminal (see the following code) NuSMV > add_property -c -p "AG !(Object1.state = ready & AX Object2.state = running)" -n "first" …
sam
  • 53
  • 4
1
vote
1 answer

NuSMV CTL specification

I have started learning NuSMV these days. I have this code: MODULE main VAR state: {a,b,c,d,e}; ASSIGN init(state) := a; next(state) := case (state = a) : b; (state = b) : c; (state = c) : d; …
sam
  • 53
  • 4
1
vote
2 answers

VB6 update/reload a CTL user control used in my project

I have an old VB6 project that uses a CTL user control. I can see the user control on the toolbox. If I create a new form inside the project, and I try to add the user control, it fails because "Error loading DLL" and the control cannot be…
Jortx
  • 707
  • 1
  • 7
  • 22
1
vote
0 answers

How to fix Skin that changes when you click 'Edit' on third party DNN modules?

I have a problem where a third party module on DNN will go to a different skin when you click on 'Edit'. The edit mode changes the content on the same page with CTL in the URL. (For example: dnndev.me/Home/ctl/Manage/mid/701 This question is similar…
Tig7r
  • 525
  • 1
  • 4
  • 21
1
vote
1 answer

How to deal with the error that Nusmv cannot check ctl properties with input variables (IVAR)?

MODULE main IVAR v1 :boolean; VAR v2 : boolean; SPEC NAME p1 := AG (v1&v2); file ltlerror.smv: line 8: Property contains input variables:
Alvin
  • 43
  • 5
1
vote
1 answer

Oracle data not loading after POSITION(10)

i have been trying to load some data from a csv file based on certain conditions and i am restricted by the use of "OR" control in when clause (Oracle ctl) the data loads for the first 11 conditions but does not loads any data after the first 11…
1
vote
2 answers

Sqlldr to accept 1 type of date format

I have a sql script file that dynamically generates a control file. It accepts date fields in date formats for mm/dd/yyyy. The sqlldr is loading the dates from the csv file, but it is also accepting date formats such as "mm\dd\yyyy" or…
Alkey29
  • 189
  • 1
  • 5
  • 20
1
vote
1 answer

How can i change these into CTL SPEC in NuSMV model?

I need help writing these CTL. I don't reall understand how to write in NuSMV format yet, hopefully my code will make sense to you since it is incomplete atm. 2)If a process is waiting, it will eventually get to its critical section 3)The two…
Darkflame
  • 79
  • 2
  • 11
1
vote
1 answer

NuSMV model checking: create a simple game model

I'm new to NuSMV and try to model this simple turn-based game. There are 10 bricks in a pile, each player can take 1-3 brick per turn, whoever take the last brick wins the game. Assume player A go first, and here is my attempt. I want to express…
user97919
  • 17
  • 2
1
vote
2 answers

Does SPIN support CTL for expressing constraints now?

I googled for a while and I found out some papers proposed CTL or CTL* Model checking for SPIN. However, according to Promela manual page, there is no way how to express CTL in Promela model. Is it just in a proposal level now?
jungyh0218
  • 558
  • 1
  • 4
  • 17
1
vote
1 answer

kubectl output different than remote API

I am using kubernetes for container orchestration,I dont get any output while running kubectl get rc on the master node while I get a list of replication controllers when using their REST API curl -X GET…
user_mda
  • 18,148
  • 27
  • 82
  • 145
1
vote
2 answers

Migrating from Oracle CTL to MySQL

I would like to migrate from Oracle to MySQL, and one of the important steps is to replace the actual job built on an Oracle environment. Basically, every day I receive some 'oracle' dump files from another Oracle environment (mainly CTL or Oracle…
Andrea
1
vote
1 answer

Is this CTL formula equivalent and what makes it hold?

I'm wondering if the CTL formulas below are equivalent and if so, can you help me persuade myself that they are? A(p U ( A(q U r) )) = A(A(p U q) U r) I can't come up with any models that contradicts it and my guts tells me the formulas are…
ondrus
  • 13
  • 3