CScout 2.3 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News CScout 2.3 (Default branch)
# 1  
Old 04-10-2008
CScout 2.3 (Default branch)

ImageCScout is a source code analyzer and refactoringbrowser for collections of C programs. It canprocess workspaces of multiple projects, mappingthe complexity introduced by the C preprocessorback into the original C source code files. CScoutperforms an analysis of C source code that is moredetailed and accurate than current compilers andlinkers, as it takes into account the identifierscopes introduced by the C preprocessor and the Clanguage proper scopes and namespaces.License: Free for non-commercial useChanges:
This version calculates many new file and function-related metrics to assist in the evaluation of the code's maintainability. A couple of gcc extensions have been added. Support for various Microsoft C extensions now allows CScout to process more Microsoft-platform C code, like the complete Windows Research Kernel (WRK). Finally, this version fixes some small language-related corner cases.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
KinoSearch1::Search::MultiSearcher(3pm) 		User Contributed Perl Documentation		   KinoSearch1::Search::MultiSearcher(3pm)

Dummy class, only here to support initialization of Weights from Queries.

NAME
KinoSearch1::Search::MultiSearcher - Aggregate results from multiple searchers. SYNOPSIS
for my $server_name (@server_names) { push @searchers, KinoSearch1::Search::SearchClient->new( peer_address => "$server_name:$port", analyzer => $analyzer, password => $pass, ); } my $multi_searcher = KinoSearch1::Search::MultiSearcher->new( searchables => @searchers, analyzer => $analyzer, ); my $hits = $multi_searcher->search( query => $query ); DESCRIPTION
Aside from the arguments to its constructor, MultiSearcher looks and acts just like a KinoSearch1::Searcher object. The primary use for MultiSearcher is to aggregate results from several remote searchers via SearchClient, diffusing the cost of searching a large corpus over multiple machines. METHODS
new Constructor. Takes two hash-style parameters, both of which are required. o analyzer - an item which subclasses KinoSearch1::Analysis::Analyzer. o searchables - a reference to an array of searchers. COPYRIGHT
Copyright 2006-2010 Marvin Humphrey LICENSE, DISCLAIMER, BUGS, etc. See KinoSearch1 version 1.00. perl v5.14.2 2011-11-15 KinoSearch1::Search::MultiSearcher(3pm)