close
Warning:
Can't synchronize with repository "(default)" (/var/svn/tolp does not appear to be a Subversion repository.). Look in the Trac log for more information.
- Timestamp:
-
Mar 17, 2011, 8:58:57 AM (14 years ago)
- Author:
-
Víctor de Buen Remiro
- Comment:
-
--
Legend:
- Unmodified
- Added
- Removed
- Modified
-
v7
|
v8
|
|
8 | 8 | == Kernel == |
9 | 9 | |
| 10 | 1. '''OOP''': [wiki:TolOop Object Oriented Programing] |
| 11 | 1. '''TPR''': [wiki:TolPackageRulesAndComments TOL packages and repositories] |
| 12 | 1. '''LoadDynLib''': [wiki:LoadDynLib Dynamic linkage of C++ binary libraries] |
| 13 | 1. '''CINT''': Embeding interpreted C/C++ in TOL to speed some large cycles. |
| 14 | 1. '''#Embed''': Inserts the TOL code of a file in another one avoiding some |
| 15 | problems in parsing with structures that are not recognized using {{{Include}}} function |
10 | 16 | 1. '''Crashes''': The number of fatal crashes has been reduced and when happen, system |
11 | 17 | gives more information about the problem wich can be avoided or solved more easily. |
12 | 18 | 1. '''Memory leaks''': Now TOL have almost none significative memory leak, even along |
13 | | large and complex process like bayesian simulations. |
14 | | 1. '''OOP''': [wiki:TolOop Object Oriented Programing] |
15 | | 1. '''TPR''': [wiki:TolPackageRulesAndComments TOL packages and repositories] |
16 | | 1. '''LoadDynLib''': [wiki:LoadDynLib Dynamic linkage of C++ binary libraries] |
17 | | 1. '''TolCint''': Embeding C/C++ in TOL to speed some large cycles. |
18 | | 1. '''#Embed''': Inserts the TOL code of a file in another one avoiding some |
19 | | problems in parsing with structures that are not recognized using {{{Include}}} function |
| 19 | large and complex process like bayesian simulations. The typical effect of these kind |
| 20 | of problems was that memory consumption was growing until the top of the heap was reached. |
| 21 | 1. '''NameBlock''': Solved some problems about copying and reassigning objects and members. |
20 | 22 | |
21 | | == Tools for large TOL objects == |
| 23 | == Handling with large TOL objects == |
22 | 24 | |
23 | | 1. '''NameBlock''': Solved some problems about copying and reassigning objects and members. |
24 | 25 | 1. '''Indexed sets''': |
25 | 26 | 1. new functions Append, Remove and Replace to handle with indexed (or not) sets. |
26 | | 1. HashMap: Handling and storing generic hashed mapping data using internal index by name features of set |
| 27 | 1. HashMap: Handling and storing generic hashed mapping data using internal index by name |
| 28 | features of set |
27 | 29 | 1. MatEncode: Encoding cualitative and cuantitive data using matrices |
28 | 30 | 1. MatQuery: Sorting, selecting and classifying matrix data. |
… |
… |
|
32 | 34 | |
33 | 35 | 1. BysMcmc: Bayesian Sparse Regression (BSR) |
34 | | 1. Generalized linear weighted regressions with GrzLinModel (Normal, Poisson, ...) and QltvRespModel (Logit and Probit regressions) |
35 | | 1. Constrained real optimization with NonLinGloOpt and TolIpopt |
36 | | 1. Interpolation and aproximation of scalar and vectorial functions |
37 | | 1. MatQuery: K-Nearest Neighbor Searching |
38 | | 1. MatQuery: Delaunay 2D-Triangulation |
| 36 | 1. Generalized linear weighted regressions with [OfficialTolArchiveNetworkGrzLinModel GrzLinModel] |
| 37 | (Normal, Poisson, ...) and |
| 38 | [OfficialTolArchiveNetworkQltvRespModel QltvRespModel] (Logit and Probit regressions). |
| 39 | 1. [OfficialTolArchiveNetworkBysVecLinReg BysVecLinReg] Bayesian Vectorial Linear Regression. |
| 40 | 1. [OfficialTolArchiveNetworkBysSampler BysSampler] Generic bayesian sampling tools. |
| 41 | 1. Constrained real optimization with [OfficialTolArchiveNetworkNonLinGloOpt NonLinGloOpt] and |
| 42 | TolIpopt. |
| 43 | 1. MulVarFunAprox: Interpolation and aproximation of scalar and vectorial functions. |
| 44 | 1. MatQuery: |
| 45 | 1. K-Nearest Neighbor Searching |
| 46 | 1. Delaunay 2D-Triangulation |
39 | 47 | |
40 | 48 | == Data tools == |