Changeset 17197
- Timestamp:
- 08/09/19 18:20:34 (5 years ago)
- Location:
- branches/2994-AutoDiffForIntervals/HeuristicLab.Problems.DataAnalysis.Regression.Symbolic.Extensions
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2994-AutoDiffForIntervals/HeuristicLab.Problems.DataAnalysis.Regression.Symbolic.Extensions/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression.Extensions.csproj
r17196 r17197 68 68 </ItemGroup> 69 69 <ItemGroup> 70 <Compile Include="ConstrainedNLS.cs" /> 71 <Compile Include="ConstrainedNLSInternal.cs" /> 70 72 <Compile Include="NLOpt.cs" /> 71 73 <Compile Include="NLOptEvaluator.cs" /> … … 81 83 </ItemGroup> 82 84 <ItemGroup> 85 <ProjectReference Include="..\HeuristicLab.Analysis\3.3\HeuristicLab.Analysis-3.3.csproj"> 86 <Project>{887425B4-4348-49ED-A457-B7D2C26DDBF9}</Project> 87 <Name>HeuristicLab.Analysis-3.3</Name> 88 </ProjectReference> 83 89 <ProjectReference Include="..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj"> 84 90 <Project>{958b43bc-cc5c-4fa2-8628-2b3b01d890b6}</Project> … … 126 132 <Private>False</Private> 127 133 </ProjectReference> 134 <ProjectReference Include="..\HeuristicLab.Problems.Instances\3.3\HeuristicLab.Problems.Instances-3.3.csproj"> 135 <Project>{3540E29E-4793-49E7-8EE2-FEA7F61C3994}</Project> 136 <Name>HeuristicLab.Problems.Instances-3.3</Name> 137 </ProjectReference> 128 138 </ItemGroup> 129 139 <ItemGroup> -
branches/2994-AutoDiffForIntervals/HeuristicLab.Problems.DataAnalysis.Regression.Symbolic.Extensions/NLOpt.cs
r17196 r17197 169 169 170 170 [DllImport("nlopt_x64.dll", CallingConvention = CallingConvention.Cdecl)] 171 public static extern nlopt_result nlopt_set_precond_min_objective(IntPtr nlopt_opt, nlopt_func f, nlopt_precond pre, IntPtr f_data); 172 173 [DllImport("nlopt_x64.dll", CallingConvention = CallingConvention.Cdecl)] 174 public static extern nlopt_result nlopt_set_precond_max_objective(IntPtr nlopt_opt, nlopt_func f, nlopt_precond pre, IntPtr f_data); 171 public static extern nlopt_result nlopt_set_precond_min_objective(IntPtr nlopt_opt, nlopt_func f, nlopt_precond pre, IntPtr f_data); // only used by CCSAQ optimizer in NLOpt version 2.6.1 172 173 [DllImport("nlopt_x64.dll", CallingConvention = CallingConvention.Cdecl)] 174 public static extern nlopt_result nlopt_set_precond_max_objective(IntPtr nlopt_opt, nlopt_func f, nlopt_precond pre, IntPtr f_data); // only used by CCSAQ optimizer in NLOpt version 2.6.1 175 175 176 176 [DllImport("nlopt_x64.dll", CallingConvention = CallingConvention.Cdecl)]
Note: See TracChangeset
for help on using the changeset viewer.