[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [tlaplus] Functions in the standard libraries



Hello,

you forgot to click on "set of model values" when instantiating the set "Character". Attached is the TLA+ module and a screenshot of how the instance should be displayed.

TLC indicates an error when evaluating the _expression_ text[i+j] since both i and j may be 0. Please remember that TLA+ sequences are indexed from 1, not 0. But the instantiation works.

Stephan

--
You received this message because you are subscribed to the Google Groups "tlaplus" group.
To unsubscribe from this group and stop receiving emails from it, send an email to tlaplus+unsubscribe@xxxxxxxxxxxxxxxx.
To view this discussion on the web visit https://groups.google.com/d/msgid/tlaplus/AE5956FE-C390-494C-ABC6-BFAD42E75818%40gmail.com.

Attachment: bm.tla
Description: Binary data

--
You received this message because you are subscribed to the Google Groups "tlaplus" group.
To unsubscribe from this group and stop receiving emails from it, send an email to tlaplus+unsubscribe@xxxxxxxxxxxxxxxx.
To view this discussion on the web visit https://groups.google.com/d/msgid/tlaplus/AE5956FE-C390-494C-ABC6-BFAD42E75818%40gmail.com.

PNG image



On 19 Dec 2022, at 09:38, mohan radhakrishnan <radhakrishnan.mohan@xxxxxxxxx> wrote:

Hello,
            This screenshot shows the error. The model wouldn't execute if I don't use double quotes.
Thanks,
Mohan

On Monday, December 19, 2022 at 11:48:39 AM UTC+5:30 Stephan Merz wrote:
Don't use quotes, just abstract (i.e., model) values.

Stephan

On 19 Dec 2022, at 05:54, mohan radhakrishnan <radhakris...@xxxxxxxxx> wrote:

Characters <- {a,b,c}  \* set of model values
text <- << a, b, a, a, c >>  \* ordinary value
pattern <- << a, a >>   \* ordinary value

This shows an error for all the values . (e.g)  Unknown operator : 'b'. The UI shows a small popup and a miniscule red square in the section "What is the model?"
So I used double quotes and the struct holds ASCII values.

I also think I have not used the FP constructs or support for Math in Pluscal. So it looked like it supports only imperative styles.

Thanks,
Mohan
On Sunday, December 18, 2022 at 1:50:53 PM UTC+5:30 Stephan Merz wrote:
Can you explain what `struct' represents? Assuming the module pasted on StackOverflow is the one you are currently working with, I don't understand why you compare struct[pattern[j+1]] and struct[text[i + j]] rather than just comparing pattern[j+1] and text[i+j], as in the Java version of the algorithm.

What values did you choose for instantiating the constant parameters in your model? I suggest you use something like

Characters <- {a,b,c}  \* set of model values
text <- << a, b, a, a, c >>  \* ordinary value
pattern <- << a, a >>   \* ordinary value

Concerning expressiveness, PlusCal and TLA+ expressions are the same, and PlusCal should certainly be powerful enough to represent the algorithm. Both languages are way more expressive than Java, in a mathematical sense.

Stephan

On 18 Dec 2022, at 05:21, mohan radhakrishnan <radhakris...@xxxxxxxxx> wrote:

I mean that the Pluscal isn't coded very well because the language doesn't seem to be expressive like Java.
Attempts to code an entire algorithm is discouraged. I guess.
TLA is what I should be using. That is more. powerful. I am just beginning.

Thanks,
Mohan

On Sunday, December 18, 2022 at 7:11:41 AM UTC+5:30 andrew...@gmail.com wrote:
What do you mean that the algorithm is "wrong"?

On Saturday, December 17, 2022 at 8:35:00 AM UTC-5 radhakris...@gmail.com wrote:
I am able to use 

struct == [a |-> 97, b |-> 98, c |-> 99]

and a small subset to complete the model check phase. States are less in number now. But the code is very convoluted.

I believe you meant that this is what abstraction means ? The Pluscal code will be quite complex if I try to code the entire program

which isn't our goal. But. I have a question. If the Pluscal code isn't complete(in this case), the algorithm is wrong and the model

checker still completes. What does it mean for the specification ? How do I interpret that state ?

Thanks,

Mohan


On Friday, December 16, 2022 at 4:13:01 PM UTC+5:30 Stephan Merz wrote:
Please see https://github.com/tlaplus/tlaplus/issues/512.

But I believe that for your application, using an abstract set of characters is preferable.

Stephan

On 16 Dec 2022, at 11:11, mohan radhakrishnan <radhakris...@gmail.com> wrote:

Hello,
             I experimented with the changes and they work but the function

Ascii(char) == 96 + CHOOSE z \in 1 .. 26 :"abcdefghijklmnopqrstuvwxyz"[z] = char

throws this. I have converted the code in the book to Pluscal. Is that wrong ?

The exception was a java.lang.RuntimeException

: A non-function (a string) was applied as a function.


Thanks,
Mohan

On Thursday, December 15, 2022 at 1:30:33 PM UTC+5:30 Stephan Merz wrote:
Hello,

please check Section 16.1.10 of Specifying Systems, which discusses strings and characters and even contains a function to convert lower-case letters to ASCII. In short, TLA+ has no hardwired definition of what characters are. In your representation, the variables in_pattern and in_text are sequences of strings, not characters.

As far as I can tell, the algorithm is independent of any concrete representation of characters. I suggest that you make the set of characters as well as the inputs to the algorithm parameters of your specification, i.e. introduce (at the top of the module)

CONSTANT Character, text, pattern

ASSUME text \in Seq(Character) /\ pattern \in Seq(Character)

When you use TLC to check your algorithm, you can instantiate these constants by concrete values, e.g.

Character <- {a,b,c}  \* a set of model values
text <- << a, a, b, a, c >>
pattern <- << b, a >>

In this way, you'll also alleviate the effect of state explosion. If you want to go further than testing the algorithm on concrete inputs, you can replace the parameters `text' and `pattern' by variables and nondeterministically assign them finite (bounded-length) sequences of characters by writing something like

define {
  \* sequences of characters of length at most n
  CharSeq(n) == UNION { [1 .. k -> Character] : k \in 0 .. n }
}

[...]

variables text \in CharSeq(5), pattern \in CharSeq(3);

[...]

In this way, TLC will check the algorithm for all text / pattern strings of bounded length.

Remember that TLA+ is a language for specifying algorithms at a high level of abstraction, not a programming language. 

Hope this helps,
Stephan


On 15 Dec 2022, at 05:53, mohan radhakrishnan <radhakris...@gmail.com> wrote:

Hello,
           I was looking for functions to get the ASCII value of characters but realized I couldn't
find a list of all functions available. Should I look for a facility to add my own functions ?

Can I check if the code returns the correct value before checking the model and state spaces ? The state space for this is enormous anyway.

Thanks,
Mohan

-- 
You received this message because you are subscribed to the Google Groups "tlaplus" group.
To unsubscribe from this group and stop receiving emails from it, send an email to tlaplus+u...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/tlaplus/6c72f651-82f0-416c-b01f-744a7bef5662n%40googlegroups.com.


-- 
You received this message because you are subscribed to the Google Groups "tlaplus" group.
To unsubscribe from this group and stop receiving emails from it, send an email to tlaplus+u...@googlegroups.com.

-- 
You received this message because you are subscribed to the Google Groups "tlaplus" group.
To unsubscribe from this group and stop receiving emails from it, send an email to tlaplus+u...@xxxxxxxxxxxxxxxx.

-- 
You received this message because you are subscribed to the Google Groups "tlaplus" group.
To unsubscribe from this group and stop receiving emails from it, send an email to tlaplus+u...@xxxxxxxxxxxxxxxx.

--
You received this message because you are subscribed to the Google Groups "tlaplus" group.
To unsubscribe from this group and stop receiving emails from it, send an email to tlaplus+unsubscribe@xxxxxxxxxxxxxxxx.
To view this discussion on the web visit https://groups.google.com/d/msgid/tlaplus/710c16c8-29c7-4813-aa47-2de91a324d7an%40googlegroups.com.
<Screenshot 2022-12-19 at 2.05.58 PM.png>

--
You received this message because you are subscribed to the Google Groups "tlaplus" group.
To unsubscribe from this group and stop receiving emails from it, send an email to tlaplus+unsubscribe@xxxxxxxxxxxxxxxx.
To view this discussion on the web visit https://groups.google.com/d/msgid/tlaplus/AE5956FE-C390-494C-ABC6-BFAD42E75818%40gmail.com.