Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2747_CFSAP/HeuristicLab.Problems.Scheduling.CFSAP/3.3/Properties/AssemblyInfo.cs.frame @ 16757

Last change on this file since 16757 was 14757, checked in by abeham, 7 years ago

#2747: Added CFSAP with optimal (polynomial) assignment algorithm

File size: 2.4 KB
Line 
1#region License Information
2
3/* HeuristicLab
4 * Copyright (C) 2002-2017 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
5 *
6 * This file is part of HeuristicLab.
7 *
8 * HeuristicLab is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation, either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * HeuristicLab is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
20 */
21
22#endregion
23
24using System.Reflection;
25using System.Runtime.InteropServices;
26
27// General Information about an assembly is controlled through the following
28// set of attributes. Change these attribute values to modify the information
29// associated with an assembly.
30[assembly: AssemblyTitle("HeuristicLab.Problems.Scheduling.CFSAP")]
31[assembly: AssemblyDescription("Plugin that implements the non-permutational flow shop scheduling problem with two-machine nests (CFSAP) from W. Bozejko.")]
32[assembly: AssemblyConfiguration("")]
33[assembly: AssemblyCompany("HEAL")]
34[assembly: AssemblyProduct("HeuristicLab")]
35[assembly: AssemblyCopyright("(c) HEAL 2002-2017")]
36[assembly: AssemblyTrademark("")]
37[assembly: AssemblyCulture("")]
38
39// Setting ComVisible to false makes the types in this assembly not visible
40// to COM components.  If you need to access a type in this assembly from
41// COM, set the ComVisible attribute to true on that type.
42[assembly: ComVisible(false)]
43
44// The following GUID is for the ID of the typelib if this project is exposed to COM
45[assembly: Guid("93609034-d1ee-4dc6-a381-e4cdb55e4261")]
46
47// Version information for an assembly consists of the following four values:
48//
49//      Major Version
50//      Minor Version
51//      Build Number
52//      Revision
53//
54// You can specify all the values or you can default the Build and Revision Numbers
55// by using the '*' as shown below:
56// [assembly: AssemblyVersion("1.0.*")]
57[assembly: AssemblyVersion("3.3.0.0")]
58[assembly: AssemblyFileVersion("3.3.14.$WCREV$")]
Note: See TracBrowser for help on using the repository browser.