Free cookie consent management tool by TermsFeed Policy Generator

Changeset 15624


Ignore:
Timestamp:
01/17/18 13:25:45 (7 years ago)
Author:
abeham
Message:

#2645: created branch

Location:
branches/ContextAlgorithms
Files:
1 added
5 edited
189 copied

Legend:

Unmodified
Added
Removed
  • branches/ContextAlgorithms/HeuristicLab.Clients.Hive.Slave.ConsoleClient/3.3/app.config

    r14738 r15624  
    113113  </userSettings>
    114114
     115  <system.serviceModel>
     116    <bindings>
     117      <netTcpBinding>
     118        <binding name="NetBinding_IHiveService" receiveTimeout="00:20:00"
     119          sendTimeout="00:20:00" maxBufferPoolSize="2147483647" maxBufferSize="2147483647"
     120          maxReceivedMessageSize="2147483647">
     121          <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647"
     122            maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
     123          <security mode="TransportWithMessageCredential">
     124            <message clientCredentialType="UserName" />
     125          </security>
     126        </binding>
     127      </netTcpBinding>
     128      <wsHttpBinding>
     129        <binding name="WSHttpBinding_IHiveService" receiveTimeout="00:20:00"
     130          sendTimeout="00:20:00" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647">
     131          <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647"
     132            maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
     133          <security>
     134            <message clientCredentialType="UserName" />
     135          </security>
     136        </binding>
     137      </wsHttpBinding>
     138    </bindings>
     139    <services>
     140      <service name="HeuristicLab.Clients.Hive.SlaveCore.SlaveCommunicationService">
     141        <endpoint address="net.pipe://localhost/HeuristicLabSlaveCom" binding="netNamedPipeBinding" contract="HeuristicLab.Clients.Hive.SlaveCore.ServiceContracts.ISlaveCommunication"/>
     142      </service>
     143    </services>
     144    <client>
     145      <endpoint name="SlaveCommunicationServiceEndpoint" address="net.pipe://localhost/HeuristicLabSlaveCom" binding="netNamedPipeBinding" contract="HeuristicLab.Clients.Hive.SlaveCore.ServiceContracts.ISlaveCommunication"/>
     146      <endpoint address="http://services.heuristiclab.com/Hive-3.3/HiveService.svc"
     147        binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IHiveService"
     148        contract="HeuristicLab.Clients.Hive.IHiveService" name="WSHttpBinding_IHiveService">
     149        <identity>
     150          <certificate encodedValue="AwAAAAEAAAAUAAAAwK1+2oAmcy/mI2P2QjyiJRh0y60gAAAAAQAAACoCAAAwggImMIIBj6ADAgECAhAIkseQ2EEhgU720qJA61gqMA0GCSqGSIb3DQEBBAUAMCQxIjAgBgNVBAMTGXNlcnZpY2VzLmhldXJpc3RpY2xhYi5jb20wHhcNMTAwNTExMTExNDAyWhcNMzkxMjMxMjM1OTU5WjAkMSIwIAYDVQQDExlzZXJ2aWNlcy5oZXVyaXN0aWNsYWIuY29tMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCq26Bwmwc7k+4W30qLQ2j+FInEL5BuH6opDY6CSlrtt3xQS/anrhvpbf3QghLDVINzcHkzbPmm/SguG4F85QLB6xO+tJaOvRo0iEK5g3c307vMIru7FJwk/OhplEQ5J1hbDgL3zOJlrWlgtqRVxCtVdF3XroI9BctOt1NkeKv9ewIDAQABo1kwVzBVBgNVHQEETjBMgBCjbgdYd4j5JgUuJ1Wo/GxroSYwJDEiMCAGA1UEAxMZc2VydmljZXMuaGV1cmlzdGljbGFiLmNvbYIQCJLHkNhBIYFO9tKiQOtYKjANBgkqhkiG9w0BAQQFAAOBgQAb/2xk2uQad68shSPl/uixWgvFI8WkxOTBopOLaLtDxwCeZ3mWVHdV9VnixHtThubnEBXAhYOCQSIXWtQuXFWO+gH3YyjTRJY5kTmXyuvBRTn3/so5SrQ7Rdlm9hf6E5YVX3tCjAy7ybUyaDUkQfmH5vmvgvpMzRfsJ1qhnUpJiQ==" />
     151        </identity>
     152      </endpoint>
     153      <endpoint address="net.tcp://services.heuristiclab.com/Hive-3.3/HiveService.svc"
     154        binding="netTcpBinding" bindingConfiguration="NetBinding_IHiveService"
     155        contract="HeuristicLab.Clients.Hive.IHiveService" name="NetBinding_IHiveService">
     156        <identity>
     157          <dns value="services.heuristiclab.com" />
     158        </identity>
     159      </endpoint>
     160    </client>
     161  </system.serviceModel>
     162
    115163  <runtime>
    116164    <gcServer enabled="true"/>
  • branches/ContextAlgorithms/HeuristicLab.MainForm.WindowsForms/3.3/HeuristicLab.MainForm.WindowsForms-3.3.csproj

    r11623 r15624  
    278278    </BootstrapperPackage>
    279279  </ItemGroup>
     280  <ItemGroup>
     281    <EmbeddedResource Include="Dialogs\InfoBox.resx">
     282      <DependentUpon>InfoBox.cs</DependentUpon>
     283    </EmbeddedResource>
     284  </ItemGroup>
    280285  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
    281286  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  • branches/ContextAlgorithms/HeuristicLab.Optimization/3.3/BasicProblems/BasicProblem.cs

    r15583 r15624  
    6565    protected BasicProblem()
    6666      : base() {
    67       Parameters.Add(new ValueParameter<TEncoding>("Encoding", "Describes the configuration of the encoding, what the variables are called, what type they are and their bounds if any."));
     67      var encodingParameter = new ValueParameter<TEncoding>("Encoding", "Describes the configuration of the encoding, what the variables are called, what type they are and their bounds if any.");
     68      // ABE: disable showing the encoding itself in the run by default as it wastes a lot of space
     69      //      note that parameters of the encoding might still show up in the run
     70      encodingParameter.GetsCollected = false;
     71      Parameters.Add(encodingParameter);
    6872      oldEncoding = Encoding;
    6973      if(Encoding != null) Parameterize();
  • branches/ContextAlgorithms/HeuristicLab.Optimization/3.3/BasicProblems/Encoding.cs

    r15583 r15624  
    9292    protected Encoding(string name)
    9393      : base(name) {
    94       Parameters.Add(new FixedValueParameter<ReadOnlyItemSet<IOperator>>(name + ".Operators", "The operators that the encoding specifies.", encodingOperators.AsReadOnly()));
     94      var operatorsParam = new FixedValueParameter<ReadOnlyItemSet<IOperator>>(name + ".Operators", "The operators that the encoding specifies.", encodingOperators.AsReadOnly());
     95      // ABE: disable showing the operator collection in the run by default as it wastes a lot of space
     96      operatorsParam.GetsCollected = false;
     97      Parameters.Add(operatorsParam);
    9598    }
    9699
  • branches/ContextAlgorithms/HeuristicLab.Tests/HeuristicLab.IGraph/IGraphWrappersGraphTest.cs

    r15583 r15624  
    2828namespace HeuristicLab.Tests {
    2929  [TestClass]
    30   [DeploymentItem("igraph-0.8.0-pre-x86.dll")]
    31   [DeploymentItem("igraph-0.8.0-pre-x64.dll")]
    3230  public class IGraphWrappersGraphTest {
    3331    [TestMethod]
Note: See TracChangeset for help on using the changeset viewer.