vote up 1 vote down star
1

If I wanted to learn about pattern recognition in general what would be a good place to start (recommend a book)?

Also, does anybody have any experience/knowledge on how to go about applying these algorithms to find abstraction patterns in programs? (repeated code, chunks of code that do the same thing, but in slightly different ways, etc.)

Thanks

Edit: I don't mind mathematically intensive books. In fact, that would be a good thing.

flag

7 Answers

vote up 3 vote down check

If you are reasonably mathematically confident then either of Chris Bishop's books "Pattern Recognition and Machine Learning" or "Neural Networks for Pattern Recognition" are very good for learning about pattern recognition.

link|flag
vote up 1 vote down

It helps if you have access to the parse tree generated during compilation. This way you can look for pieces of the tree which are similar, ignoring the nodes which are deeper than what you are looking at, this way you can pick out e.g. nodes which multiply together two sub-expressions, ignoring the contents of the sub-expressions. You can apply the same logic to a collection of nodes, e.g. you want to find a multiplication of two sub-expressions where those two sub-expressions are additions of more sub-expressions. You first look for multiplies, then check if the two nodes underneath the multiply are additions, ignoring anything any deeper.

link|flag
vote up 0 vote down

I'd suggest looking at the code of some open source project (e.g. FindBugs or SIM) that does the kind of thing you're talking about.

link|flag
vote up 0 vote down

If you're working in one of the supported languages, IntelliJ idea has a really smart structural search and replace that would fit your problem.

link|flag
vote up 0 vote down

Other interesting projects are PMD and Eclipse.

Eclipse uses AST (abstract syntax trees) for all source code in any project. Tools can then register for certain types of ASTs (like Java source) and get a preprocessed view where they can add additional information (like links to documentation, error markers, etc).

link|flag
vote up 0 vote down

Another project you can look into is Duplo - it's an open-source/GPL project, so you can pore over their approach by grabbing the code from SourceForge.

link|flag
vote up 0 vote down

This is specific to .Net and visual studio, but it finds duplicate code in your project. It does report some false positives I've found but it could be a good place to start.

Clone Detective

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.