Changeset 17997
- Timestamp:
- 06/27/21 15:30:17 (3 years ago)
- Location:
- branches/3127-MRGP-VarPro-Exploration
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3127-MRGP-VarPro-Exploration
- Property svn:mergeinfo changed
/trunk (added) merged: 17992-17993
- Property svn:mergeinfo changed
-
branches/3127-MRGP-VarPro-Exploration/HeuristicLab.Algorithms.DataAnalysis.Glmnet/3.4/Glmnet.cs
r17784 r17997 33 33 /// parm = penalty member index(0 <= parm <= 1) 34 34 /// = 0.0 => ridge 35 /// = 1.0 => lasso35 /// = 1.0 => lasso 36 36 /// no = number of observations 37 37 /// ni = number of predictor variables … … 43 43 /// vp(ni) = relative penalties for each predictor variable 44 44 /// vp(j) = 0 => jth variable unpenalized 45 /// cl(2, ni) = interval constraints on coefficient values(overwritten)46 /// cl(1, j) = lower bound for jth coefficient value(<= 0.0)47 /// cl(2, j) = upper bound for jth coefficient value(>= 0.0)45 /// cl(2, ni) = interval constraints on coefficient values (overwritten) 46 /// cl(1, j) = lower bound for jth coefficient value(<= 0.0) 47 /// cl(2, j) = upper bound for jth coefficient value(>= 0.0) 48 48 /// ne = maximum number of variables allowed to enter largest model 49 /// (stopping criterion)49 /// (stopping criterion) 50 50 /// nx = maximum number of variables allowed to enter all models 51 /// along path(memory allocation, nx > ne).51 /// along path(memory allocation, nx > ne). 52 52 /// nlam = (maximum)number of lamda values 53 53 /// flmin = user control of lamda values(>=0) -
branches/3127-MRGP-VarPro-Exploration/HeuristicLab.Problems.DataAnalysis.Symbolic
- Property svn:mergeinfo changed
/trunk/HeuristicLab.Problems.DataAnalysis.Symbolic (added) merged: 17993
- Property svn:mergeinfo changed
-
branches/3127-MRGP-VarPro-Exploration/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Interpreter/IntervalInterpreter.cs
r17963 r17997 287 287 var b = Evaluate(instructions, ref instructionCounter, nodeIntervals, variableIntervals); 288 288 // support only integer powers 289 if (b.LowerBound == b.UpperBound && Math.Truncate(b.LowerBound) == b.LowerBound) {289 if (b.LowerBound == b.UpperBound && Math.Truncate(b.LowerBound) == b.LowerBound) { 290 290 result = Interval.Power(a, (int)b.LowerBound); 291 291 } else { … … 321 321 322 322 public static bool IsCompatible(ISymbolicExpressionTree tree) { 323 var containsUnknownSymbols = ( 324 from n in tree.Root.GetSubtree(0).IterateNodesPrefix() 325 where 323 foreach (var n in tree.Root.GetSubtree(0).IterateNodesPrefix()) { 324 if ( 326 325 !(n.Symbol is Variable) && 327 326 !(n.Symbol is Constant) && … … 343 342 !(n.Symbol is Power) && 344 343 !(n.Symbol is Absolute) && 345 !(n.Symbol is AnalyticQuotient) 346 select n).Any(); 347 return !containsUnknownSymbols; 344 !(n.Symbol is AnalyticQuotient)) return false; 345 346 else if (n.Symbol is Power) { 347 // only integer exponents are supported 348 var exp = n.GetSubtree(1) as ConstantTreeNode; 349 if (exp == null || exp.Value != Math.Truncate(exp.Value)) return false; 350 } 351 } 352 return true; 348 353 } 349 354 }
Note: See TracChangeset
for help on using the changeset viewer.