Free cookie consent management tool by TermsFeed Policy Generator

source: branches/GeneralizedQAP/HeuristicLab.Problems.QuadraticAssignment/3.3/Service References/QAPInstanceService/QAP.xsd @ 6875

Last change on this file since 6875 was 6875, checked in by abeham, 13 years ago

#1619

  • Moved QAPLIB files from the problem plugin to the test plugin
  • Updated unit test
  • Moved service reference to the problem plugin (from the views plugin)
  • Created a simple test list for our most common tests
File size: 2.2 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<xs:schema xmlns:tns="http://schemas.datacontract.org/2004/07/HeuristicLab.Services.ProblemInstances" elementFormDefault="qualified" targetNamespace="http://schemas.datacontract.org/2004/07/HeuristicLab.Services.ProblemInstances" xmlns:xs="http://www.w3.org/2001/XMLSchema">
3  <xs:import schemaLocation="http://services.heuristiclab.com/ProblemInstances-3.3/QAP/QAP.svc?xsd=xsd2" namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays" />
4  <xs:complexType name="QAPInstanceDto">
5    <xs:sequence>
6      <xs:element minOccurs="0" name="BestKnownQuality" type="xs:double" />
7      <xs:element minOccurs="0" name="Description" nillable="true" type="xs:string" />
8      <xs:element xmlns:q1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="Distances" nillable="true" type="q1:ArrayOfArrayOfdouble" />
9      <xs:element minOccurs="0" name="HasBestKnownQuality" type="xs:boolean" />
10      <xs:element minOccurs="0" name="Maximization" type="xs:boolean" />
11      <xs:element minOccurs="0" name="Name" nillable="true" type="xs:string" />
12      <xs:element xmlns:q2="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="Weights" nillable="true" type="q2:ArrayOfArrayOfdouble" />
13    </xs:sequence>
14  </xs:complexType>
15  <xs:element name="QAPInstanceDto" nillable="true" type="tns:QAPInstanceDto" />
16  <xs:complexType name="ArrayOfQAPSolutionDto">
17    <xs:sequence>
18      <xs:element minOccurs="0" maxOccurs="unbounded" name="QAPSolutionDto" nillable="true" type="tns:QAPSolutionDto" />
19    </xs:sequence>
20  </xs:complexType>
21  <xs:element name="ArrayOfQAPSolutionDto" nillable="true" type="tns:ArrayOfQAPSolutionDto" />
22  <xs:complexType name="QAPSolutionDto">
23    <xs:sequence>
24      <xs:element xmlns:q3="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="Assignment" nillable="true" type="q3:ArrayOfint" />
25      <xs:element minOccurs="0" name="AssignmentUndefined" type="xs:boolean" />
26      <xs:element minOccurs="0" name="Quality" type="xs:double" />
27    </xs:sequence>
28  </xs:complexType>
29  <xs:element name="QAPSolutionDto" nillable="true" type="tns:QAPSolutionDto" />
30</xs:schema>
Note: See TracBrowser for help on using the repository browser.