The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
25 views

WPF equivalent to Flex states

Flex has a very elegant concept of states which let you define what components should be displayed and what should they look like based on the parent component "state". For example, you could define ...
9
votes
2answers
252 views

Check if two “simple” 'if statements' in C are equivalent

I have 'if statements' from two different sources, which try to implement the same condition possibly in a different way. The 'if statements' are C. If at all possible I need a python script that can ...
0
votes
2answers
54 views

Unique hash with jQuery that can be reproduced in PHP [closed]

I am using a script in wich I need to create a unique Hash with jQuery that I would be able similar to the PHP function uniqid(). Any help ?
0
votes
2answers
120 views

How to implement equivalence class in Java?

What would be the simple way to implement equivalence class in Java? Is there any library for that purpose? The bothering part is how to write an efficient and non-naive "equal" operator. Let S = ...
8
votes
3answers
248 views

Why are vector's multi-argument constructors taking construction parameters not marked “explicit”?

I observed the following vector constructors in the Standard C++ library explicit vector(size_type n); vector(size_type n, const T& value, const Allocator& = Allocator()); Is there a reason ...
1
vote
3answers
114 views

C++ Stl Set Behavior

I was trying to run the below code. What I am finding is that there is difference in the output. I understand that there is an issue with ordering mechanism used in the Comparator functionality. What ...
1
vote
0answers
50 views

Morphism - Setoid on non-convertible terms in Coq

I have the following function in Coq. Now I want to define an instance as below. In my case, equivalence [==] on type [nat] is defined but not on [StringMap.t String.t]. Please if you solve the ...
1
vote
3answers
104 views

Compilation error with == operator

I've isolated the error to this line: string.getClass() == jojo.getClass() Shouldn't this line create two Class objects and then check if they (as in the two references) point to the same object? ...
2
votes
1answer
71 views

Primitives and Object Wrapper Equivalence in JavaScript

EDIT: Based on everyone's feedback, the original version of this question is more design-related, not standards-related. Making more SO-friendly. Original: Should a JS primitive be considered ...
3
votes
3answers
239 views

Agda: Equivalence relation for sub-colists

I would like to define an equality on CoList (Maybe Nat)s that only takes the justs into account. Of course, I can't just go from CoList (Maybe A) to CoList A, because that wouldn't necessarily be ...
0
votes
1answer
94 views

automata: using only Equivalence class to proove regularity

I have tried to go about this problem in several ways, and looked in several places with no answer. the question is as follow: [Question] Given two regular languages (may be referred to as finitely ...
0
votes
2answers
855 views

What is the difference between “conflict serializable” and “conflict equivalent”?

In database theory, what is the difference between "conflict serializable" and "conflict equivalent"? My textbook has a section on conflict serializable but glosses over conflict equivalence. These ...
0
votes
1answer
199 views

How to combine two equivalence plots (lattice) in R?

I would like to add two equivalence plots together for the following lattice graphics. My usual trick for the plot() function par(mfcol=c(1,2)) does not work with these lattice-based graphs. I have ...
2
votes
1answer
230 views

Fortran: combine allocatable vectors in an array without copying and reshaping

How can one combine bunch of large allocatable vectors in an array in Fortran? I'd like to avoid copying and reshaping using reshape as the arrays are large. The effect I want to achieve is just like ...
1
vote
1answer
209 views

Logical Equivalence - OR gates and implication

I'm currently answering a logical equivalence question and would like confirmation of the rule I used at one point as it is not in the list of laws, presumably because it's "something you should just ...
2
votes
4answers
210 views

How do I find equal columns in R?

Given the following: a <- c(1,2,3) b <- c(1,2,3) c <- c(4,5,6) A <- cbind(a,b,c) I want to find which columns in A are equal to for example my vector a. My first attempt would be: ...
0
votes
0answers
116 views

Equivalence partitioning testing

Could someone help me to make a test case for a program that accepts a following string The sequence is: 0 or 1 minus sign. followed by 1 or more digits. 0 or 1 decimal point. 0 or more digits. 0 ...
-1
votes
2answers
209 views

How to solve Logical Equivalence

okay I have an equivalence that I have to prove. these equivalences use biconditionals and boolean algebra. but I'm not sure which order I apply the laws of logical equivalence. EDIT: It is an ...
4
votes
1answer
102 views

In R, how can I test if two factors are equivalent?

I am generating a big list of factors with different levels, and I want to be able to detect when two of them define the same partition. For example, I want to detect all of the following as ...
0
votes
0answers
57 views

JavaBDD - find equivalence of two boolean expressions

I want to use the JavaBDD library to test the equivalence of 2 boolean expressions e.g A+B+C and B+C+A but I find no examples how to use it. Any help?
1
vote
2answers
74 views

strings seemingly not equivalent using substring() [duplicate]

Possible Duplicate: Java String.equals versus == i am new to java so don't expect things to be easy but this has me totally shell shocked. why on earth doesn't the if statement evaluate ...
1
vote
2answers
65 views

Equivalence between ifs and forms of case statements in Ruby

Using the ruby_parser and Ruby2Ruby gems, I'm writing code that keeps track of what conditions have been evaluated and what their results and parameters were. In order to keep this as simple as ...
1
vote
2answers
37 views

MySQL equivalence vs. updates

When updating a row by UPDATE, is it always guaranteed the the row is 'affected' then, and only then, if some of the fields set in the UPDATE statement would hold NOT field='value' ? Would that also ...
2
votes
5answers
549 views

How should one proceed to prove (or find) if two regular expressions are same or equivalent?

For example, in an assignment given to me, we were asked to find out if two regular expressions are equal or not. (a+b+c)* and ((ab)**c*)* My question is how is one supposed to do that? If I draw ...
3
votes
1answer
2k views

Dictionary Keys.Contains vs. ContainsKey: are they functionally equivalent?

I am curious to know if these two are functionally equivalent in all cases. Is it possible that by changing the dictionary's default comparator that these two would be functionally different? Also, ...
0
votes
1answer
106 views

ksoap2 equivalent to didStart/didEndElement?

my question for today is that i'm curious about if there is a close relative and/or equivalence in java using the ksoap2-library to parse element-by-elements. In objective-c for example: public ...
2
votes
2answers
1k views

Equivalence between two automata

Which is the best or easiest method for determining equivalence between two automata? I.e., if given two finite automata A and B, how can I determine whether both recognize the same language? They ...
0
votes
3answers
178 views

What is the java equivalence to the C#-DateTime?

I have this function below. It recieves a string and a key made out of another string. The function takes the inputs and adds on the date to make the exact same key to validate. public bool ...
3
votes
4answers
885 views

String.Format (.NET) equivalent in Java?

The String.Format in .NET (maybe just VB.NET) convert {0}, {1}, ... into determined String, for example: Dim St As String = "Test: {0}, {1}" Console.WriteLine(String.Format(St, "Text1", "Text2")) ...
0
votes
1answer
341 views

.NET XMLSerializer equivalence in Java/Android?

I've Googled the XMLSerializer in Android, but I found it's totally different from .NET. What I need is that, from a Serializable Class, I can write them to a XML file, and then read the XML file to ...
0
votes
1answer
449 views

Constructing logic gates from only AND, OR and NOT gates

I am doing some revision for my exams and one of the questions that frequently occurs is to construct logic gates using only the functions AND, OR and NOT. The most commonly occurring ones are NAND, ...
3
votes
3answers
116 views

Question about reversed lists in Python

I am very new to python, as you will be able to tell. If I have a list: a = [1,2,3,2,1] This evaluates to true: a == a[::-1] ...but this evaluates to false: a == a.reverse() Why is that the ...
27
votes
3answers
1k views

Is JavaScript's double equals (==) symmetric?

There are many cases in which JavaScript's type-coercing equality operator is not transitive. (See, for instance, JavaScript equality transitivity is weird....) But are there any cases in which it ...
10
votes
1answer
1k views

JavaScript equality transitivity is weird

I've been reading Douglas Crawford's JavaScript: The Good Parts and I came across this weird example that doesn't make sense to me: '' == '0' // false 0 == '' // true 0 == '0' ...
2
votes
2answers
3k views

JavaScript comparison operators: Identity vs. Equality

I've been trying to understand the difference between JavaScript's comparison operators: identity and equality. From what I've read, if you check the equality of two objects using ==, JavaScript will ...
3
votes
2answers
2k views

Name equivalence question

Suppose I have: int a; int b; Are the variables a and b name equivalent (more specifically, since primitive types don't have type names, can they be considered name equivalent)? Thanks.
5
votes
1answer
462 views

How do you use MSBuild less than / greater than conditions?

How do you do less than or greater than in MSBuild conditions? I've tried the following variations both with and without single quotes surrounding the values, but no dice <PropertyGroup ...
1
vote
3answers
737 views

Is there a structural equivalence type in C?

Is there a structural type equivalence in C?
6
votes
2answers
146 views

Trying to find an algorithm which takes 2 regular expressions and tells whether they are equivalent

I'm trying to find out what the algorithm would be by being given two languages L1 and L2 to determine if they are equivalent (L1 = L2). It's surprisingly difficult to come up with one as I've found, ...
0
votes
2answers
271 views

Equivalence relational algebra and turing langauge

I'm starting a project where I want to try to recognize relational algebra's in java-like programming language. For example, given two relations: AmericanActor(Name) EuropianActor(Name) The ...
0
votes
1answer
438 views

Database Theory: Transaction serializability

Hy, I'm learning for my exams and came over the following question: Take the History (or Schedule) H = w1[x] w2[x] w2[y] c2 w1[y] w3[x] w3[y] c3 w1[z] c1 where w1[x] means: Transaction 1 writes to ...
1
vote
3answers
115 views

Scheme symbolic equivalence

The platform i'm working with is DrScheme. I've seen that a pair (a b) [constructed by (cons a b)] is implemented within the language like a procedure that looks like this: (define (cons a b) ...
14
votes
8answers
917 views

Are there equivalences between Microsoft and Oracle/Sun technologies?

is it possible to say what are the Microsoft equivalents technologies compared to Sun? For example: Microsoft | Oracle/Sun ...
5
votes
1answer
359 views

Equivalence Classes LISP

I need to write a program for equivalence classes and get this outputs... (equiv '((a b) (a c) (d e) (e f) (c g) (g h))) => ((a b c g h) (d e f)) (equiv '((a b) (c d) (e f) (f g) (a e))) => ...
8
votes
4answers
3k views

What is C# 'internal' in VB.net?

What is C# 'internal' in VB.net? Simple question, hard to find!
10
votes
4answers
2k views

Boxed Primitives and Equivalence

So I was asked this question today. Integer a = 3; Integer b = 2; Integer c = 5; Integer d = a + b; System.out.println(c == d); What will this program print out? It returns true. I answered it ...
2
votes
4answers
819 views

Java: Equalator? (removing duplicates from a collection of objects)

I have a bunch of objects of a class Puzzle. I have overridden equals() and hashCode(). When it comes time to present the solutions to the user, I'd like to filter out all the Puzzles that are ...
0
votes
2answers
174 views

Determining object equivalence for value types, reference types and ILists in .net

I have a class with a Property called 'Value' which is of type Object. Value can be of any type, a structure, a class, an array, IList etc. My problem is with the setter and determining whether the ...
5
votes
9answers
1k views

How to reduce a logical statement?

I'm pretty sure I can remember doing something like this in one of my college level courses and that there was some kind of formula to it, but my mind is failing me beyond that. Given the statement: ...
57
votes
6answers
13k views

Elegant ways to support equivalence (“equality”) in Python classes

When writing custom classes it is often important to allow equivalence by means of the == and != operators. In Python, this is made possible by implementing the __eq__ and __ne__ special methods, ...

1 2