Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
3answers
203 views

C standard addressing simplification inconsistency

Section §6.5.3.2 "Address and indirection operators" ¶3 says (relevant section only): The unary & operator returns the address of its operand. ... If the operand is the result of a unary * ...
6
votes
6answers
218 views

Tools looking for overly complex boolean expression that can be simplified?

Are there any C++ code parsers that look for boolean expressions that can be simplified using boolean algebra? I know that compilers do this already, but it would be nice to have a tool giving out ...
6
votes
6answers
441 views

How can this very long if-statement be simplified?

How can this if-statement be simplified? It makes a plus sign: http://i.stack.imgur.com/PtHO1.png If the statement is completed, then a block is set at the x and y coordinates. for y in ...
6
votes
4answers
819 views

Boolean Algebra Simplification

Need help have no idea the thought process in doing this kind of simplification. ! - Denotes NOT Lets say I have !((A+B) * (A+!B)) I need to simplify that using all rules except absortion. I know it ...
4
votes
3answers
190 views

Why does iPhone sample code use so many intermediate variables?

I'm currently working through Apress's "Beginning iPhone 3 Development". A standard they use in their example applications is like the following code: - (void)viewDidLoad { BlueViewController ...
4
votes
1answer
375 views

simplifying and rearranging non-commutative variables in mathematica

this is a little complicated. i spent 2 weeks on this, so i'd love ur input or suggestion how to figure it out or where to post. in short, i have an expression that contains multiplications between ...
4
votes
1answer
611 views

Is minimization of boolean expressions NP-Complete?

I know that boolean satisfiability is NP-Complete, but is the minimization/simplification of a boolean expression, by which I mean taking a given expression in symbolic form and producing an ...
3
votes
3answers
165 views

Is it possible to join these two regex expressions into one?

i have the following two regular expressions (in order btw). 1. ^~/buying/(.*)\?(.*) => foo= group 1 baa= group 2. 2. ^~/buying/(.*) => foo= group 1 baa= nothing/empty/null/baibai ...
3
votes
4answers
269 views

C#: How to simplify this string-of-numbers-to-various-date-parts-code

I have a string that might be between 1 and 8 characters long. I need to convert those into a day, a month and a year. For missing parts I will use the current one. The code I have now is kind of big ...
3
votes
4answers
78 views

What ways are there to simplify the install of a php app for linux and hopefully windows as well?

I have a php application ( http://github.com/tchalvak/ninjawars ), essentially a php-based webgame that I run at http://ninjawars.net . I frequently configure and install the app for myself for ...
2
votes
4answers
352 views

simplifying fractions in Java

My task is to develop a rational class. If 500 and 1000 are my inputs, then (½) must be my output. I have written a program on my own to find it. Is there another best way to find the solution, or my ...
2
votes
3answers
131 views

Perl Regular Expression simplification

I want to simplify the following statement. if($_=~/^([0-9a-fA-F][0-9a-fA-F][0-9a-fA-F][0-9a-fA-F][0-9a-fA-F])/) Is there an alternate way I can write the above statement without repeating ...
2
votes
1answer
381 views

how to obtain simplified Stanford Bunny model

Some will object that this is not a programming question. I'm willing to defend its relevance to SO, or to take the question elsewhere, if someone has a good suggestion for a better place to get this ...
2
votes
4answers
86 views

Need help simplifying my php table

I am relatively new to php and have a feeling that I am going the long way round when displaying data from mysql. I have a table a I want to show a few fields from my database. How would I achieve ...
1
vote
1answer
70 views

Maxima: Simplify matrix components

in Maxima, how is it possible to simply equations that are components of a matrix? I have a rather big matrix and want to simplify the components of it (e.g. factor out and cancel out). Thanks.
1
vote
1answer
35 views

Using ActiveRecord's scope instruction to return a single result

I have the following class that works fine in my unit tests but I feel it could be simpler. class License < ActiveRecord::Base scope :active, lambda { where("active_from <= ?", ...
1
vote
2answers
76 views

Template simplification

In one of my projects, I have the following class template hierarchy : template <typename FruitType, typename ParentFilterType = void> class filter; template <typename FruitType> // ...
1
vote
4answers
37 views

Determining complex security and permissions

I've been put on a project that has a messy class that writes buttons to a page. The app is a document manager and has a popup list of buttons, such as download, email, and print. Depending on the ...
1
vote
2answers
374 views

Graph Simplification Algorithm Advice Needed

I have a need to take a 2D graph of n points and reduce it the r points (where r is a specific number less than n). For example, I may have two datasets with slightly different number of total points, ...
1
vote
1answer
77 views

Correlated row-generating query in Oracle

Given this starting CTE: WITH Sections AS ( SELECT 1 Section, 1 StartUnit, 5 EndUnit FROM DUAL UNION ALL SELECT 2, 0, 2 FROM DUAL UNION ALL SELECT 3, 1, 1 FROM DUAL ), How do I generate a ...
1
vote
1answer
129 views

Boolean Simplification

I have a boolean simplification problem that's already been solved.. but I'm having a hard time understanding one basic thing about it.. the order in which it was solved. The problem is simplifying ...
1
vote
2answers
212 views

Boolean Logic Simplification Issue

I hate this stuff. Just to note. + means OR * means AND ! means NOT. (A+B) * (A+C) * (!B + !C) (A | B) & (A | C) & (!B | !C) // more conventnal The answer is A(!B + !C) I'm trying to get ...
1
vote
1answer
352 views

help with multiplying polynomials in lisp

for example: (3x2 - 5x + 2)(7x + 1) and you simplify it like this: ((3 2)(-5 1)(2 0))((7 1)(1 0)) ((21 3)(3 2)(-35 2)(-5 1)(14 1)(2 0)) (21 3)(32 2)(9 1)(2 0) and you get this answer: 21x3 + 32x2 + ...
1
vote
4answers
222 views

Is It Possible To Simplify This Branch-Based Vector Math Operation?

I'm trying to achieve something like the following in C++: class MyVector; // 3 component vector class MyVector const kA = /* ... */; MyVector const kB = /* ... */; MyVector const kC = /* ... */; ...
0
votes
0answers
55 views

Android simplify [closed]

Could you please help me simplify my code ? I've tried to put it in an Async Task but still the application loads the activity really slow . These are all the variables : View vw; ImageView im; ...
0
votes
3answers
90 views

Simplifying PHP forms that pre-populate with dabase data and error check, so actively overwrite with $_POST data

Ok, so this is a common scenario. You have an html form that involves editing information. The original information comes from the database. When you post the form, it may not save the information ...
0
votes
1answer
69 views

What is the proper way to simplfy the expression 'x' plus 'x' in MATLAB?

I have a very simple question: I'm trying to simplify the expression x + x to get the answer 2x in MATLAB but I'm having a hard time figuring out the proper format and I don't know what to search in ...
0
votes
6answers
255 views

improve and simplify css with php parser

I want to improve css syntax in several ways such as: defining variables link-color1 = #fff mathematical computing width:500-3-2 this seemy stupid but with variables: width: container - inner - ...
0
votes
4answers
44 views

Make regexp shorter

I have the following text: var avarb avar var varb var. What I want to do is to extract only "direct" var occurrences. The above string contains 3 of them. While playing with rubular I made up the ...
0
votes
6answers
231 views

Refactoring - Simplifying nested for loops in java

I need to figure out how to improve following code: for (DirCategory c1 : categories1) { c1.setCount(dirEntryService.getDirEntryCategoryCount(c1)); log.debug("c1: ...
0
votes
1answer
496 views

Simplification of Boolean Expression in java

Is there any tool or library in java which simplifies a boolean expression formula and gives result. when inputs are like that, exp = (a || a' ) result = 1 exp = ( a || b ) && ( a' || b ) ...
0
votes
2answers
170 views

How to Simplify .htaccess Rewriterule

Is it possible to simplfy these RewriteRules? I've hundreds of similar entries in my .htaccess file and it seems not to be the best way to set a 410 Header. RewriteRule ^pageID_9363511.html - [G] ...
0
votes
3answers
130 views

help simplifying function that adds and increments “image[]” into a array

I've been working a lot with forms lately and decided to make a php script to simplify some aspects that I see myself repeating, I won't post the full monstrosity that I have created, but instead I ...
0
votes
4answers
346 views

AS3: How to simplify Action Script 3 Code?

Here's a example that I've to use when I want to create a button with mouse-over effect: this.buttonExample.buttonMode = true; this.buttonExample.useHandCursor = true; ...
0
votes
1answer
177 views

Simplified iphone In-app store implementation for built-in product features

This question is for those familiar with implementing the iphone in-app store functionality. The app I'm building has only built-in features that are unlocked when features are purchased. Further, ...
0
votes
1answer
58 views

PHP: Call a method on a returned class

I have a method which returns a class and want to call a method on it. Instead of $theClass = $this->getClass(); $theClass->foo(); I would like to write $this->getClass()->foo(); Is ...
0
votes
3answers
158 views

How to optimize splitting in F# more?

This code is splitting a list in two pieces by a predicate that take a list and return false in the moment of splitting. let split pred ys = let rec split' l r = match r with | ...