In logic, quantification is the binding of a variable ranging over a domain. The variable thereby becomes bound by an operator called a quantifier.
0
votes
2answers
27 views
Groups and quantifiers {m,n}
Is it possible to use quantifiers with groups?
For example. I want to match something like:
11%
09%
aa%
zy%
g1%
8b%
...
The pattern is: 2 letters or numbers (mixed, or not) and a % ending the ...
0
votes
1answer
30 views
The correct syntax of a quantifier in a regular expression pattern with grep in Solaris?
I have to search in many files with several lines, the lines with a telephone number of exactly ten digits. Examples of the lines:
telephoneNumber: 66727166501
telephoneNumber: 6672716650
...
1
vote
1answer
56 views
Regex: possessive quantifier for the star repetition operator, i.e. \d**
From the GLib Reference Manual, section "Regular expression syntax", subsection "Atomic grouping and possessive quantifiers":
Consider the pattern \d+foo when applied to the string 123456bar: ...
1
vote
1answer
46 views
Quantifier elimination for enumeration types in Z3
I'm experimenting with quantifier elimination tactic for formulas of enumerated types.
I'd like to know if there are any ways of increasing the performance by adjusting the solver somehow.
After a ...
1
vote
1answer
41 views
Does Z3 v4.3+ support quantifier elimination for NON-linear arithmetic
I could not find out what kind of quantifier elimination Z3 fully supports.
What I have is a universally quantified formula over -in general- non-linear terms. I would like to obtain an equivalent ...
2
votes
1answer
88 views
Z3: Check if model is unique
Is there a way in Z3 to prove/show that a given model is unique and that no other solution exists?
A small example to demonstrate
(declare-const a1 Int)
(declare-const a2 Int)
(declare-const a3 Int)
...
0
votes
0answers
37 views
Code rewrite in Z3 with quantifiers
guys
I'm writing a model using Microsft Z3 and I need to add the following assertions to it:
(declare-const line (Array Int Int))
(assert (and (> (select line 1) 0) (< (select line 1) 4)))
...
10
votes
1answer
251 views
Scoped type variables require explicit foralls. Why?
If you want to use GHC's lexically scoped type variables, you also have to use explicit universal quantification. That is, you have to add forall declarations to your functions' type signatures:
{-# ...
2
votes
4answers
96 views
Regex expressions in Java \\s vs. \\s+
Please, what's the difference between those expressions
x = x.replaceAll("\\s", "");
x = x.replaceAll("\\s+", "");
0
votes
1answer
38 views
Universal qauntification hypothesis in Coq
I want to change the hypothesis H from the form below
mL : Map
mR : Map
H : forall (k : RecType) (e : String.string),
MapsTo k e (filter (is_vis_cookie l) mL) <->
MapsTo k e ...
2
votes
3answers
58 views
Elimination rule for finitely-bounded quantifiers
I have the following goal:
∀x ∈ {0,1,2,3,4,5}. P x
I want to break this goal down into the six subgoals P 0, P 1, P 2, P 3, P 4 and P 5. This is easily done by apply auto. But what is the relevant ...
2
votes
2answers
105 views
Php Preg_Replace not matching quantity of characters
I'm trying to filter a string by preg_replacing. Anything but numbers and dot and no more than 5 numbers before the dot. PHP 5.4.3 under wamp(UptoDate).
Good Matche:
0.01
0.1
12345.11
12345.1
1
...
1
vote
3answers
43 views
Is there any difference between `{m}` and `{m}?` quantifiers?
Please give an example where the difference between greedy and lazy versions of "repeat-exactly-m-times" quantifier can be seen.
The question arose from here and here.
If there are no differences then ...
0
votes
5answers
41 views
How do I quantify a group in Javascript's regex?
Let's say I had a string "QQxaxbxcQQ", and I wanted to capture all groups of x followed by any character. I also only want to search between the QQ's (the string may include other things in it). I ...
-1
votes
2answers
157 views
Regex Quantifier on Alternatives(vertical bar “|”)
I want to trim a string if it starts and/or ends with foo or bar for example and want to get the inner string in a regex group.
For example
"fooTestbar" should be "Test", "Test2bar" should be ...
2
votes
2answers
158 views
Quantifier Elimination for LIA in Z3 via C/C++ API
I would like to use Z3 for eliminating quantifiers in linear integer arithmetic formulas via C/C++ API. Consider a simple example: Exists (x) ( x <= y & y <= 2*x). A quantifier-free
...
0
votes
1answer
151 views
First Order Logic Statement for Proof. Manipulating Quantifiers
Ok, I have the given relation:
If F(x) is not true then no case satisfies G(x) and H(y,x).
((∀x ¬F(x)) ⇒¬(∀y G(y) ˄ H(y,x)))
Now, Can I possibly convert this into:
(∀y G(y) ˄ H(y,x))) ⇒ ((∀x F(x)) ...
0
votes
0answers
70 views
python regex: match a group more than once [duplicate]
Possible Duplicate:
Python regular expressions - how to capture multiple groups from a wildcard expression?
python regex of group match
I know there are better or easier ways to do this, ...
2
votes
1answer
87 views
Defining custom quantifiers
I'm trying to get Z3 to verify some formal proofs that uses an iterated maximum in the notation. For example, for f a function (↑i: 0 ≤ i < N: f(i)) designates the highest value of f ...
1
vote
1answer
99 views
Tools for quantifier elimination in linear integer arithmetic
Are there any other available (and still supported) SMT tools that perform quantifier elimination for linear integer arithmetic besides Z3?
Thanks.
0
votes
1answer
98 views
Z3 .NET API for existence quantifier
I am trying to use Z3 .net API to get an existence quantifier expr.
Following are my code:
RealExpr c = ctx.MkRealConst("c");
BoolExpr Eqzero = ctx.MkGt(c,ctx.MkReal(0));
BoolExpr Gezero = ...
44
votes
3answers
1k views
What's the theoretical basis for existential types?
The Haskell Wiki does a good job of explaining how to use existential types, but I don't quite grok the theory behind them.
Consider this example of an existential type:
data S = forall a. Show a ...
1
vote
1answer
129 views
Exclusion and inclusion in Z3
I am trying to model inclusion and exclusion of elements in sets with Z3. In particular inclusion of elements with distinct values, and exclusion of elements not already in a target set. So basically ...
1
vote
1answer
104 views
Does pull_nested_quantifiers option work with simplify in Z3?
I would like to pull all nested quantifiers in a formula to the outermost level. I expected the following commands to work in Z3 but they don't:
(set-option :pull-nested-quantifiers true)
(simplify ...
0
votes
3answers
574 views
JavaScript Regular Expression with character class quantifier variable
I am trying to create a regular expression with a character class that has a specific quantifier which is a variable for example:
var str = "1234.00";
var quantifier = 3;
str = ...
0
votes
4answers
261 views
Why doesn't the RegExp “greedy” mode work?
I do not understand the behavior. I have such example, need to catch html comment.
var str = '.. <!--My -- comment test--> ';
var regex1 = /<!--[.]*-->/g;
var regex2 = ...
-1
votes
3answers
1k views
javascript regex invalid quantifier error
I have the following javascript code:
if (url.match(/?rows.*?(?=\&)|.*/g)){
urlset= url.replace(/?rows.*?(?=\&)|.*/g,"rows="+document.getElementById('rowcount').value);
}else{
...
0
votes
2answers
161 views
Sequential v/s Nested loop structure parsing using regex
The input can be either 1. or 2. or a combination of both.
Sequential
...
startLoop
setSomething
endLoop
startLoop
setSomething
endLoop
...
The regex I use ...
1
vote
1answer
294 views
Javascript RegEx “invalid quantifier”
var search = new RegExp("<span class=\"highlight\">(?<text>.*)</span>", "g");
Is there something wrong with the RegEx? Firebug just says "invalid quantifier". Thats it, no more ...
0
votes
1answer
132 views
formal axiomatic def of an example Kripke model in terms of ∀, ∃
I am looking for a formal axiomatic definition of an example Kripke model in terms of ∀, ∃ assuming knowledge of simple predicate logic, boolean logic,...
All descriptions of Kripke models I ...
2
votes
1answer
384 views
How to skolemize multiple combinations of universal and existential quantifieres?
What is the skolemized form of (∀u∃v a(u,v)) ∧ (∀x∃y a(x,y)) ?
I am unsure, because there are different perenex normal forms possible:
∀u∃v ∀x∃y (a(u,v) ∧ a(x,y))
∀u∀x ∃v∃y (a(u,v) ∧ a(x,y))
…
...
2
votes
3answers
145 views
Ambiguous type using explicit quantifiers
Minimal example code:
class IntegralAsType a where
value :: (Integral b) => a -> b
class (Num a, Fractional a, IntegralAsType q) => Zq q a | a -> q where
changeBase:: forall p b . ...
0
votes
2answers
107 views
ASP.Net Regular Expression issue for greedy quantifiers
I have asp.net application where string is created in following way.
string abc;
abc="vindo|vindo|vind?40|vind?40|vincent van uden|vilm|vilm|slim?new|compas|*|darkc?loud";
Regex ABCRegex = new ...
2
votes
1answer
124 views
Display quantified-out formula
how do I display the result of quantifier elimination ?
z3 seems to be happy with the following input
(set-option :elim-quantifiers true)
(declare-fun y () Real)
(simplify (exists ((x Real)) (>= ...
2
votes
1answer
248 views
Customize LIA quantifier elimination in Z3
I'm doing quantifier elimination on LIA using F# and Z3 3.2 API.
Z3 used to have QUANT_ARITH configuration which indicates the use of Cooper's method or the Omega test for LIA quantifier ...
0
votes
1answer
51 views
Can someone explain to be what is going on here? existential universal quantifications
I have to program (C++) and find the true value of the following. I am uncertian as to what it exactly means.
AxAy(C(x, y) -> ((Aw(C(x, w) -> w = y) ^ (Az(C(z, y) -> z = x))
note that the ...
1
vote
1answer
133 views
Why is the rightmost character captured in backreference when using a character class with quantifiers?
If I have pattern ([a-z]){2,4} and string "ab", what would I expect to see in backreference \1 ?
I'm getting "b", but why "b" rather than "a"?
I'm sure there is a valid explanation, but reading ...
-1
votes
1answer
102 views
Regex optional group fails whole search [closed]
I'm stuck with something obvious which I can't make working:
There is a text like: ".... blah-blah-blah... Grupper blah-blah-blah Butik ...".
Grupper is an optional token - can be omitted in text and ...
3
votes
4answers
473 views
Regex Python / group quantifiers
I want to match a list of variables which look like directories, e.g.:
Same/Same2/Foot/Ankle/Joint/Actuator/Sensor/Temperature/Value=4.123
Same/Same2/Battery/Name=SomeString
...
1
vote
2answers
238 views
Java regex very slow (translate nested quantifiers to possessive quantifiers)
I've found this regular expression to match urls (originally in Javascript by Daring Fireball) which in java works but in some cases is extremly slow:
private final static String pattern =
"\\b" +
...
2
votes
2answers
165 views
How can I access capture buffers in brackets with quantifiers?
How can I access capture buffers in brackets with quantifiers?
#!/usr/local/bin/perl
use warnings;
use 5.014;
my $string = '12 34 56 78 90';
say $string =~ s/(?:(\S+)\s){2}/$1,$2,/r;
# Use of ...
1
vote
1answer
73 views
RewriteRule: which regex quantifier are permitted?
I'd like to know if I can use a quantifier {x} in order to define a RewriteRule.
RewriteRule ^([0-9]{3})([0-9]{2})-page/?$ /www/page.php?firstId=$1&secondId=$2
Can I write something like this?
...
2
votes
6answers
152 views
Perl REGEX Question
As a PHP programmer new to Perl working through 'Programming Perl', I have come across the following regex:
/^(.*?): (.*)$/;
This regex is intended to parse an email header and insert it into a ...
0
votes
1answer
106 views
Represent the English statement into Quantifiers
Here is a statement
C(x): x has a cat D(x): x has a dog F(x): x has a Ferret
represent using quantifiers and logical connectives. Under the domain "all students in your class"
1) No student in ...
1
vote
4answers
141 views
Populating Automatic Perl Variables when using Quantifiers
I was trying to match the following line
5474c2ef012a759a c11ab88ae8daa276 63693b53799c91f1 be1d8c8738733d80
with
if(/[[:xdigit:]{8}[:xdigit:]{8}\s]{4}/)
Is there anyway I populate the ...
2
votes
2answers
209 views
Emulating possessive quantifiers
Is it possible to emulate possessive quantifiers (.NET doesn’t support it) using atomic grouping (or in other way)?
Note. I found that (x+x+)++y can be replaced with (?>(x+x+)+)y, but this is just ...
1
vote
2answers
151 views
alternative greedy match
I want to make a greedy match to an alternative of either zero to 'm' consecutive occurences of 'a' or zero to 'n' consecutive occurences of 'b'. If I do
/a{,m}|b{,n}/
it will not work because when ...
0
votes
1answer
502 views
Existential and Universal quantifiers in DBMS
I understand what they are and I have seen examples regarding these. One such example is
{t.Fname,t.Lname|Employee(t) AND (∃d)(Department(d) AND d.Dname='Research' AND d.Dnumber=t.Dno)}
Now what is ...
26
votes
4answers
952 views
what does “exists” mean in Haskell type system?
I'm struggling to understand the exists keyword in relation to Haskell type system. As far as I know, there is no such keyword in Haskell by default, but:
There are extensions which add them, in ...
3
votes
1answer
269 views
Quantifier range not working in lookbehind
Okay so I'm working on a project where I need a regex that can match a * followed by 1-4 spaces or tabs and then followed by a row of text. Right now I'm using .* after the lookbehind for testing ...


